tests: Fix ap_acl_deny test
In ap_acl_deny test, the AP doesn't send probe responses during scan due to ACL reject. As the result, dev[0] might miss the AP's Beacon frame because the dwell time is too short. Make the test more robust and trigger passive scan, and by that increase the probability of hearing the AP. Signed-off-by: Ayala Beker <ayala.beker@intel.com>
This commit is contained in:
parent
babdd8d0d9
commit
fcc65290d4
1 changed files with 1 additions and 1 deletions
|
@ -150,7 +150,7 @@ def test_ap_acl_deny(dev, apdev):
|
|||
params['ssid'] = ssid
|
||||
params['deny_mac_file'] = "hostapd.macaddr"
|
||||
hapd = hostapd.add_ap(apdev[0], params)
|
||||
dev[0].scan_for_bss(apdev[0]['bssid'], freq="2412")
|
||||
dev[0].scan_for_bss(apdev[0]['bssid'], freq="2412", passive=True)
|
||||
dev[0].connect(ssid, key_mgmt="NONE", scan_freq="2412", wait_connect=False)
|
||||
dev[1].scan_for_bss(apdev[0]['bssid'], freq="2412")
|
||||
dev[1].connect(ssid, key_mgmt="NONE", scan_freq="2412")
|
||||
|
|
Loading…
Reference in a new issue