From: Juliusz Sosinowicz Date: Thu, 4 Apr 2024 18:16:17 +0000 (+0200) Subject: tests: ap_wpa2_eap_fast_cipher_suites: Allow wolfSSL to skip RC4 test X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=67edd4260254703516de5c86a16a06f099124bb5;p=thirdparty%2Fhostap.git tests: ap_wpa2_eap_fast_cipher_suites: Allow wolfSSL to skip RC4 test Signed-off-by: Juliusz Sosinowicz --- diff --git a/tests/hwsim/test_ap_eap.py b/tests/hwsim/test_ap_eap.py index a74011e14..ae67b870a 100644 --- a/tests/hwsim/test_ap_eap.py +++ b/tests/hwsim/test_ap_eap.py @@ -4340,7 +4340,7 @@ def test_ap_wpa2_eap_fast_cipher_suites(dev, apdev): if cipher == "RC4-SHA" and \ ("Could not select EAP method" in str(e) or \ "EAP failed" in str(e)): - if "run=OpenSSL" in tls: + if "run=OpenSSL" in tls or "wolfSSL" in tls: logger.info("Allow failure due to missing TLS library support") dev[0].request("REMOVE_NETWORK all") dev[0].wait_disconnected()