From 6f7dd9760712e63e8b59ceb13bf07c5f7e570aa4 Mon Sep 17 00:00:00 2001 From: James Prestwood Date: Mon, 19 Jun 2023 15:57:45 -0700 Subject: [PATCH] auto-t: add comment about FILS rekeys FILS rekeys were fixed in hostapd somewhat recently but older versions will fail this test. Document that so we don't get confused when running tests against older hostapd versions. --- autotests/testFILS/fils_256_test.py | 4 ++++ autotests/testFILS/fils_384_test.py | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/autotests/testFILS/fils_256_test.py b/autotests/testFILS/fils_256_test.py index 7018f0f2..ca20f683 100644 --- a/autotests/testFILS/fils_256_test.py +++ b/autotests/testFILS/fils_256_test.py @@ -55,6 +55,10 @@ class Test(unittest.TestCase): testutil.test_iface_operstate() testutil.test_ifaces_connected(device.name, hapd.ifname) + # + # TODO: If this is failing its likely due to an older hostapd version + # not containing commit 7ee814201b72 + # hapd.rekey(device.address) device.disconnect() diff --git a/autotests/testFILS/fils_384_test.py b/autotests/testFILS/fils_384_test.py index ce8904df..5ff6ec36 100644 --- a/autotests/testFILS/fils_384_test.py +++ b/autotests/testFILS/fils_384_test.py @@ -55,6 +55,10 @@ class Test(unittest.TestCase): testutil.test_iface_operstate() testutil.test_ifaces_connected(device.name, hapd.ifname) + # + # TODO: If this is failing its likely due to an older hostapd version + # not containing commit 7ee814201b72 + # hapd.rekey(device.address) device.disconnect()