auto-t: update testAgent to use TestContext

This hides iwctl output unless verbose is specified
This commit is contained in:
James Prestwood 2020-09-10 16:12:40 -07:00 committed by Denis Kenzior
parent 03ff410dff
commit b9cb6134d6
1 changed files with 3 additions and 2 deletions

View File

@ -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)