From e1923f5b6a48d6bb453d716568339be797e3ae7f Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Sat, 25 May 2019 22:24:30 +0300 Subject: [PATCH] tests: Skip ap_ft_eap_sha384_reassoc without CONFIG_SUITEB192=y This test case required Suite B 192-bit support to be enabled in the build, so skip it if that is not the case. Signed-off-by: Jouni Malinen --- tests/hwsim/test_ap_ft.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/hwsim/test_ap_ft.py b/tests/hwsim/test_ap_ft.py index 6c780efe3..f1b87a89b 100644 --- a/tests/hwsim/test_ap_ft.py +++ b/tests/hwsim/test_ap_ft.py @@ -22,6 +22,7 @@ from utils import HwsimSkip, alloc_fail, fail_test, wait_fail_trigger, skip_with from wlantest import Wlantest from test_ap_psk import check_mib, find_wpas_process, read_process_memory, verify_not_present, get_key_locations from test_rrm import check_beacon_req +from test_suite_b import check_suite_b_192_capa def ft_base_rsn(): params = {"wpa": "2", @@ -2782,6 +2783,7 @@ def test_ap_ft_eap_sha384(dev, apdev): def test_ap_ft_eap_sha384_reassoc(dev, apdev): """WPA2-EAP-FT with SHA384 using REASSOCIATE""" + check_suite_b_192_capa(dev) ssid = "test-ft" passphrase = "12345678" -- 2.39.2