From ece9aa627ae9d669cfbe2ba12655cd2d257a4a94 Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Sat, 28 Dec 2019 19:03:22 +0200 Subject: [PATCH] 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 --- tests/hwsim/test_ap_ciphers.py | 1 + 1 file changed, 1 insertion(+) 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()