From: Jouni Malinen Date: Thu, 27 Nov 2014 18:33:35 +0000 (+0200) Subject: tests: Make ap_wps_reg_config_tkip failure log more helpful X-Git-Tag: hostap_2_4~1007 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3c086180c15fb96dcc7e4e7c4de4429d2fe378a4;p=thirdparty%2Fhostap.git tests: Make ap_wps_reg_config_tkip failure log more helpful The "Not fully connected" report did not clearly identify what went wrong, so make this more verbose in hope of being able to determine what happened should this test case fail again. Signed-off-by: Jouni Malinen --- diff --git a/tests/hwsim/test_ap_wps.py b/tests/hwsim/test_ap_wps.py index 5c8aeed06..156d804d7 100644 --- a/tests/hwsim/test_ap_wps.py +++ b/tests/hwsim/test_ap_wps.py @@ -619,7 +619,7 @@ def test_ap_wps_reg_config_tkip(dev, apdev): dev[0].connect_network(id) status = dev[0].get_status() if status['wpa_state'] != 'COMPLETED' or status['bssid'] != apdev[0]['bssid']: - raise Exception("Not fully connected") + raise Exception("Not fully connected: wpa_state={} bssid={}".format(status['wpa_state'], status['bssid'])) if status['ssid'] != new_ssid: raise Exception("Unexpected SSID") if status['pairwise_cipher'] != 'CCMP' or status['group_cipher'] != 'TKIP':