From 48e7c0bd503f88123a23c6057af8b7675113f64b Mon Sep 17 00:00:00 2001 From: James Prestwood Date: Thu, 7 Oct 2021 13:49:57 -0700 Subject: [PATCH] auto-t: update rekey() use to not wait for event The hostapd event wait was moved into rekey() itself. --- autotests/testFILS/fils_256_test.py | 1 - autotests/testFILS/fils_384_test.py | 1 - autotests/testFT-FILS/connection_test.py | 1 - autotests/testPSK-roam/connection_test.py | 1 - 4 files changed, 4 deletions(-) diff --git a/autotests/testFILS/fils_256_test.py b/autotests/testFILS/fils_256_test.py index 02fad28e..a4e58715 100644 --- a/autotests/testFILS/fils_256_test.py +++ b/autotests/testFILS/fils_256_test.py @@ -56,7 +56,6 @@ class Test(unittest.TestCase): testutil.test_ifaces_connected(device.name, hapd.ifname) hapd.rekey(device.address) - hapd.wait_for_event('EAPOL-4WAY-HS-COMPLETED') device.disconnect() diff --git a/autotests/testFILS/fils_384_test.py b/autotests/testFILS/fils_384_test.py index 8ecd2fec..e6550a17 100644 --- a/autotests/testFILS/fils_384_test.py +++ b/autotests/testFILS/fils_384_test.py @@ -56,7 +56,6 @@ class Test(unittest.TestCase): testutil.test_ifaces_connected(device.name, hapd.ifname) hapd.rekey(device.address) - hapd.wait_for_event('EAPOL-4WAY-HS-COMPLETED') device.disconnect() diff --git a/autotests/testFT-FILS/connection_test.py b/autotests/testFT-FILS/connection_test.py index d1389cea..14025a3b 100644 --- a/autotests/testFT-FILS/connection_test.py +++ b/autotests/testFT-FILS/connection_test.py @@ -96,7 +96,6 @@ class Test(unittest.TestCase): (self.bss_hostapd[0].ifname, device.name, True, True)) self.bss_hostapd[1].rekey(device.address) - self.bss_hostapd[1].wait_for_event('EAPOL-4WAY-HS-COMPLETED') def test_fils_ft_roam_sha256(self): wd = IWD(True) diff --git a/autotests/testPSK-roam/connection_test.py b/autotests/testPSK-roam/connection_test.py index d1beb010..ee50e4a7 100644 --- a/autotests/testPSK-roam/connection_test.py +++ b/autotests/testPSK-roam/connection_test.py @@ -81,7 +81,6 @@ class Test(unittest.TestCase): (self.bss_hostapd[0].ifname, device.name, True, True)) self.bss_hostapd[1].rekey(device.address) - self.bss_hostapd[1].wait_for_event('EAPOL-4WAY-HS-COMPLETED') device.roam(self.bss_hostapd[0].bssid)