tests: Pass apdev to hostapd.terminate()
Pass apdev dictionary to hostapd.terminate() to support operation with a remote test host. Signed-off-by: Janusz Dziedzic <janusz.dziedzic@tieto.com>
This commit is contained in:
parent
c92ee957ca
commit
369f712a40
1 changed files with 9 additions and 2 deletions
|
@ -422,8 +422,15 @@ def remove_bss(apdev, ifname=None):
|
|||
hapd_global = HostapdGlobal(hostname=hostname, port=port)
|
||||
hapd_global.remove(ifname)
|
||||
|
||||
def terminate(hostname=None, port=8878):
|
||||
logger.info("Terminating hostapd")
|
||||
def terminate(apdev):
|
||||
try:
|
||||
hostname = apdev['hostname']
|
||||
port = apdev['port']
|
||||
logger.info("Terminating hostapd " + apdev['hostname'] + "/" + apdev['port'])
|
||||
except:
|
||||
hostname = None
|
||||
port = 8878
|
||||
logger.info("Terminating hostapd")
|
||||
hapd_global = HostapdGlobal(hostname=hostname, port=port)
|
||||
hapd_global.terminate()
|
||||
|
||||
|
|
Loading…
Reference in a new issue