From 92a460526f500cb90da358aa2400b5fb93b355f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Marczykowski-G=C3=B3recki?= Date: Mon, 26 Feb 2018 02:45:26 +0100 Subject: [PATCH] tests: fix extra test's VMWrapper.run(wait=False) The call was ignored. --- qubes/tests/extra.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/qubes/tests/extra.py b/qubes/tests/extra.py index 98fc6e71..215200e7 100644 --- a/qubes/tests/extra.py +++ b/qubes/tests/extra.py @@ -86,6 +86,9 @@ class VMWrapper(object): stdout=subprocess.PIPE, stderr=subprocess.PIPE if passio_stderr else None)) return ProcessWrapper(p, self._loop) + else: + asyncio.ensure_future(self._vm.run_for_stdio(command, user=user), + loop=self._loop) def run_service(self, service, wait=True, input=None, user=None, passio_popen=False,