tests: Clear cfg80211 scan results after wext_hidden

Leaving hidden SSIDs in the cfg80211 BSS table can result in errors in
the following test cases, so use special care to clear all BSS entries
at the end of the wext_hidden test case.

Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
Jouni Malinen 2014-12-20 13:36:01 +02:00
parent 5f35a5e27f
commit 1264b68355

View file

@ -212,9 +212,9 @@ def test_wext_scan_hidden(dev, apdev):
if not wpas:
return "skip"
hostapd.add_ap(apdev[0]['ifname'], { "ssid": "test-scan",
hapd = hostapd.add_ap(apdev[0]['ifname'], { "ssid": "test-scan",
"ignore_broadcast_ssid": "1" })
hostapd.add_ap(apdev[1]['ifname'], { "ssid": "test-scan2",
hapd2 = hostapd.add_ap(apdev[1]['ifname'], { "ssid": "test-scan2",
"ignore_broadcast_ssid": "1" })
id1 = wpas.connect("test-scan", key_mgmt="NONE", scan_ssid="1",
@ -232,6 +232,13 @@ def test_wext_scan_hidden(dev, apdev):
id = wpas.connect("test-scan2", key_mgmt="NONE", scan_ssid="1",
only_add_network=True)
wpas.connect_network(id, timeout=30)
wpas.request("DISCONNECT")
hapd2.disable()
hapd.disable()
wpas.interface_remove("wlan5")
wpas.interface_add("wlan5")
wpas.flush_scan_cache(freq=2412)
wpas.flush_scan_cache()
def test_wext_rfkill(dev, apdev):
"""WEXT and rfkill block/unblock"""