From 138903f91f090e70a8ecc18ef7f259c8be45a98c Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Thu, 17 Dec 2015 11:31:37 +0200 Subject: [PATCH] tests: Run OCSP test cases with internal TLS library There is no sufficient OCSP support to go through these test cases. Signed-off-by: Jouni Malinen --- tests/hwsim/test_ap_eap.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/hwsim/test_ap_eap.py b/tests/hwsim/test_ap_eap.py index 14b7ac12c..9a34179c6 100644 --- a/tests/hwsim/test_ap_eap.py +++ b/tests/hwsim/test_ap_eap.py @@ -73,8 +73,8 @@ def check_ext_cert_check_support(dev): def check_ocsp_support(dev): tls = dev.request("GET tls_library") - if tls.startswith("internal"): - raise HwsimSkip("OCSP not supported with this TLS library: " + tls) + #if tls.startswith("internal"): + # raise HwsimSkip("OCSP not supported with this TLS library: " + tls) #if "BoringSSL" in tls: # raise HwsimSkip("OCSP not supported with this TLS library: " + tls)