From 16b5413f2bb09c2e6a1ae14f50335b0f7dd55d5d Mon Sep 17 00:00:00 2001 From: Andrei Otcheretianski Date: Wed, 22 Aug 2018 20:31:45 +0300 Subject: [PATCH] tests: Make ap_reconnect_auth_timeout test more robust This test starts two identical APs and assumes a connection to the first one, though it is not necessary true. Fix that by starting the second AP only after the connection is established. Signed-off-by: Andrei Otcheretianski --- tests/hwsim/test_ap_roam.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/hwsim/test_ap_roam.py b/tests/hwsim/test_ap_roam.py index 6f8b8d9ce..63a0b2c20 100644 --- a/tests/hwsim/test_ap_roam.py +++ b/tests/hwsim/test_ap_roam.py @@ -74,13 +74,14 @@ def test_ap_reconnect_auth_timeout(dev, apdev, params): params = hostapd.wpa2_params(ssid="test-wpa2-psk", passphrase="12345678") hapd0 = hostapd.add_ap(apdev[0], params) bssid0 = hapd0.own_addr() - hapd1 = hostapd.add_ap(apdev[1], params) - bssid1 = hapd1.own_addr() wpas.scan_for_bss(bssid0, freq=2412) id = wpas.connect("test-wpa2-psk", psk="12345678", scan_freq="2412") hwsim_utils.test_connectivity(wpas, hapd0) + hapd1 = hostapd.add_ap(apdev[1], params) + bssid1 = hapd1.own_addr() + wpas.request("BLACKLIST " + bssid0) wpas.scan_for_bss(bssid1, freq=2412)