From: Jouni Malinen Date: Sat, 28 Dec 2019 17:03:22 +0000 (+0200) Subject: tests: Make ap_cipher_mixed_wpa_wpa2 more robust X-Git-Tag: hostap_2_10~2069 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ece9aa627ae9d669cfbe2ba12655cd2d257a4a94;p=thirdparty%2Fhostap.git tests: Make ap_cipher_mixed_wpa_wpa2 more robust Explicitly clear cfg80211 scan cache to avoid issues with old BSS entries from previous test cases. Signed-off-by: Jouni Malinen --- diff --git a/tests/hwsim/test_ap_ciphers.py b/tests/hwsim/test_ap_ciphers.py index e10927a9c..4e7939169 100644 --- a/tests/hwsim/test_ap_ciphers.py +++ b/tests/hwsim/test_ap_ciphers.py @@ -374,6 +374,7 @@ def test_ap_cipher_mixed_wpa_wpa2(dev, apdev): "rsn_pairwise": "CCMP", "wpa_pairwise": "TKIP"} hapd = hostapd.add_ap(apdev[0], params) + dev[0].flush_scan_cache() dev[0].connect(ssid, psk=passphrase, proto="WPA2", pairwise="CCMP", group="TKIP", scan_freq="2412") status = dev[0].get_status()