tests: ap_ht40_scan to print STATUS and STA information to log
This can be used to check the supported rate information. Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
This commit is contained in:
parent
0bd7f104c1
commit
fb6d648819
1 changed files with 5 additions and 0 deletions
|
@ -64,7 +64,12 @@ def test_ap_ht40_scan(dev, apdev):
|
|||
if sec != "-1":
|
||||
raise Exception("Unexpected secondary channel")
|
||||
|
||||
status = hapd.get_status()
|
||||
logger.info("hostapd STATUS: " + str(status))
|
||||
|
||||
dev[0].connect("test-ht40", key_mgmt="NONE", scan_freq=freq)
|
||||
sta = hapd.get_sta(dev[0].own_addr())
|
||||
logger.info("hostapd STA: " + str(sta))
|
||||
|
||||
@remote_compatible
|
||||
def test_ap_ht40_scan_conflict(dev, apdev):
|
||||
|
|
Loading…
Reference in a new issue