This hides iwctl output unless verbose is specified --- autotests/testAgent/agent_test.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/autotests/testAgent/agent_test.py b/autotests/testAgent/agent_test.py index 80d2ce83..60465d3f 100644 --- a/autotests/testAgent/agent_test.py +++ b/autotests/testAgent/agent_test.py @@ -10,6 +10,7 @@ from iwd import PSKAgent from iwd import NetworkType import testutil import subprocess +from config import ctx class Test(unittest.TestCase): @@ -57,7 +58,7 @@ class Test(unittest.TestCase): def test_connection_with_other_agent(self): wd = IWD() - iwctl = subprocess.Popen(['iwctl', '-P', 'secret_ssid2']) + iwctl = ctx.start_process(['iwctl', '-P', 'secret_ssid2']).pid # Let iwctl to start and register its agent. wd.wait(2) @@ -72,7 +73,7 @@ class Test(unittest.TestCase): wd = IWD() - iwctl = subprocess.Popen(['iwctl', '-P', 'secret_ssid2']) + iwctl = ctx.start_process(['iwctl', '-P', 'secret_ssid2']).pid # Let iwctl to start and register its agent. wd.wait(2) -- 2.26.2