From ead550b9dd842052acf97e8f52ca9334ce0cdd15 Mon Sep 17 00:00:00 2001 From: Sean Parkinson Date: Thu, 18 Jan 2018 12:26:39 +1000 Subject: [PATCH] tests: Verify MSCHAPV2 support in eap_peap_session_resumption This test case uses EAP-MSCHAPv2 within the PEAP tunnel, so verify that the build includes support for that before running the test. Signed-off-by: Sean Parkinson --- tests/hwsim/test_ap_eap.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/hwsim/test_ap_eap.py b/tests/hwsim/test_ap_eap.py index 818e341a7..1707a3085 100644 --- a/tests/hwsim/test_ap_eap.py +++ b/tests/hwsim/test_ap_eap.py @@ -5497,6 +5497,7 @@ def test_eap_ttls_no_session_resumption(dev, apdev): def test_eap_peap_session_resumption(dev, apdev): """EAP-PEAP session resumption""" + check_eap_capa(dev[0], "MSCHAPV2") params = int_eap_server_params() params['tls_session_lifetime'] = '60' hapd = hostapd.add_ap(apdev[0], params)