diff --git a/tests/hwsim/test_ap_eap.py b/tests/hwsim/test_ap_eap.py index 0c8799831..3b5731d14 100644 --- a/tests/hwsim/test_ap_eap.py +++ b/tests/hwsim/test_ap_eap.py @@ -615,6 +615,7 @@ def _test_ap_wpa2_eap_aka_ext(dev, apdev): dev[0].request("DISCONNECT") dev[0].wait_disconnected() time.sleep(0.1) + dev[0].dump_monitor() dev[0].select_network(id, freq="2412") ev = dev[0].wait_event(["CTRL-REQ-SIM"], timeout=15) @@ -643,6 +644,7 @@ def _test_ap_wpa2_eap_aka_ext(dev, apdev): dev[0].request("DISCONNECT") dev[0].wait_disconnected() time.sleep(0.1) + dev[0].dump_monitor() tests = [ ":UMTS-AUTH:00112233445566778899aabbccddeeff:00112233445566778899aabbccddeeff:0011223344", ":UMTS-AUTH:34", @@ -669,6 +671,7 @@ def _test_ap_wpa2_eap_aka_ext(dev, apdev): dev[0].request("DISCONNECT") dev[0].wait_disconnected() time.sleep(0.1) + dev[0].dump_monitor() def test_ap_wpa2_eap_aka_prime(dev, apdev): """WPA2-Enterprise connection using EAP-AKA'""" diff --git a/tests/hwsim/test_ap_hs20.py b/tests/hwsim/test_ap_hs20.py index 27f9e8767..09429a292 100644 --- a/tests/hwsim/test_ap_hs20.py +++ b/tests/hwsim/test_ap_hs20.py @@ -60,6 +60,7 @@ def check_auto_select(dev, bssid): raise Exception("Connected to incorrect network") dev.request("REMOVE_NETWORK all") dev.wait_disconnected() + dev.dump_monitor() def interworking_select(dev, bssid, type=None, no_match=False, freq=None): dev.dump_monitor() diff --git a/tests/hwsim/test_ap_psk.py b/tests/hwsim/test_ap_psk.py index ede071e3e..624c4f97c 100644 --- a/tests/hwsim/test_ap_psk.py +++ b/tests/hwsim/test_ap_psk.py @@ -2029,6 +2029,7 @@ def test_ap_wpa_ie_parsing(dev, apdev): if ev is None: raise Exception("Association rejection not reported") dev[0].request("DISCONNECT") + dev[0].dump_monitor() finally: dev[0].request("VENDOR_ELEM_REMOVE 13 *") @@ -2042,6 +2043,7 @@ def test_ap_wpa_ie_parsing(dev, apdev): dev[0].select_network(id) dev[0].wait_connected() dev[0].request("DISCONNECT") + dev[0].dump_monitor() finally: dev[0].request("VENDOR_ELEM_REMOVE 13 *")