tests: Fix ap_wpa2_eap_fast_prf_oom with the updated PRF implementation
authorJouni Malinen <jouni@qca.qualcomm.com>
Mon, 23 May 2016 17:36:40 +0000 (20:36 +0300)
committerJouni Malinen <j@w1.fi>
Mon, 23 May 2016 17:40:14 +0000 (20:40 +0300)
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 <jouni@qca.qualcomm.com>
tests/hwsim/test_ap_eap.py

index 302fb06..d6365a4 100644 (file)
@@ -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"