From: Andrei Otcheretianski Date: Mon, 21 Aug 2017 16:36:24 +0000 (+0300) Subject: tests: Fix radius_acct_failure_sta_data test X-Git-Tag: hostap_2_7~1119 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ae503866b9a58905e5464533bc015640bf8a9fa7;p=thirdparty%2Fhostap.git tests: Fix radius_acct_failure_sta_data test The STA can get disconnected event before the AP processed the deauthentication frame, resulting in GET_FAIL command being sent too early. Fix this by waiting for AP-STA-DISCONNECTED on AP side, too. Signed-off-by: Andrei Otcheretianski --- diff --git a/tests/hwsim/test_radius.py b/tests/hwsim/test_radius.py index 96e56a3e6..046579e4d 100644 --- a/tests/hwsim/test_radius.py +++ b/tests/hwsim/test_radius.py @@ -1640,3 +1640,4 @@ def test_radius_acct_failure_sta_data(dev, apdev): dev[0].connect("radius-acct-open", key_mgmt="NONE", scan_freq="2412") dev[0].request("DISCONNECT") dev[0].wait_disconnected() + hapd.wait_event(["AP-STA-DISCONNECTED"], timeout=1)