From: Jouni Malinen Date: Sun, 2 Aug 2015 12:50:23 +0000 (+0300) Subject: tests: Skip IEEE 802.1X dynamic WEP tests in FIPS mode X-Git-Tag: hostap_2_5~225 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=24072e17bc916700e5af4e7f42d57c095a6a1629;p=thirdparty%2Fhostap.git tests: Skip IEEE 802.1X dynamic WEP tests in FIPS mode Signed-off-by: Jouni Malinen --- diff --git a/tests/hwsim/test_ieee8021x.py b/tests/hwsim/test_ieee8021x.py index 4ba4c66c9..d35a4d4a7 100644 --- a/tests/hwsim/test_ieee8021x.py +++ b/tests/hwsim/test_ieee8021x.py @@ -11,11 +11,13 @@ import time import hostapd import hwsim_utils +from utils import skip_with_fips logger = logging.getLogger() def test_ieee8021x_wep104(dev, apdev): """IEEE 802.1X connection using dynamic WEP104""" + skip_with_fips(dev[0]) params = hostapd.radius_params() params["ssid"] = "ieee8021x-wep" params["ieee8021x"] = "1" @@ -31,6 +33,7 @@ def test_ieee8021x_wep104(dev, apdev): def test_ieee8021x_wep40(dev, apdev): """IEEE 802.1X connection using dynamic WEP40""" + skip_with_fips(dev[0]) params = hostapd.radius_params() params["ssid"] = "ieee8021x-wep" params["ieee8021x"] = "1" @@ -222,6 +225,7 @@ def send_eapol_key(dev, bssid, signkey, frame_start, frame_end): def test_ieee8021x_eapol_key(dev, apdev): """IEEE 802.1X connection and EAPOL-Key protocol tests""" + skip_with_fips(dev[0]) params = hostapd.radius_params() params["ssid"] = "ieee8021x-wep" params["ieee8021x"] = "1"