test-runner: use Process to start hostapd

Since the hostapd process object is tracked by the Hostapd class there
is no sense of keeping it in the process list as well.
This commit is contained in:
James Prestwood 2021-09-07 09:54:37 -07:00 committed by Denis Kenzior
parent 165557070e
commit ac395525c8
1 changed files with 1 additions and 1 deletions

View File

@ -499,7 +499,7 @@ class Hostapd:
if ctx.is_verbose('hostapd'):
args.append('-d')
self.process = ctx.start_process(args)
self.process = Process(args)
self.process.wait_for_socket(self.global_ctrl_iface, 30)