From 90b4c73fdf1877fda0f61035bfe7d17952690f24 Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Mon, 23 May 2016 20:36:40 +0300 Subject: [PATCH] tests: Fix ap_wpa2_eap_fast_prf_oom with the updated PRF implementation This is needed to work with the tls_openssl.c changes that renamed the function that is used for deriving the EAP-FAST keys. Signed-off-by: Jouni Malinen --- tests/hwsim/test_ap_eap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/hwsim/test_ap_eap.py b/tests/hwsim/test_ap_eap.py index 302fb0637..d6365a477 100644 --- a/tests/hwsim/test_ap_eap.py +++ b/tests/hwsim/test_ap_eap.py @@ -3399,7 +3399,7 @@ def test_ap_wpa2_eap_fast_prf_oom(dev, apdev): check_eap_capa(dev[0], "FAST") tls = dev[0].request("GET tls_library") if tls.startswith("OpenSSL"): - func = "openssl_tls_prf" + func = "tls_connection_get_eap_fast_key" count = 2 elif tls.startswith("internal"): func = "tls_connection_prf"