From: Jouni Malinen Date: Sun, 29 Nov 2015 17:32:45 +0000 (+0200) Subject: tests: Skip OCSP test cases with the internal TLS implementation X-Git-Tag: hostap_2_6~1285 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bb0a72ab4621fff633ac719d71de04f574850b65;p=thirdparty%2Fhostap.git tests: Skip OCSP test cases with the internal TLS implementation The internal TLS client implementation does not yet support OCSP. Signed-off-by: Jouni Malinen --- diff --git a/tests/hwsim/test_ap_eap.py b/tests/hwsim/test_ap_eap.py index 16d111fcb..246a03cce 100644 --- a/tests/hwsim/test_ap_eap.py +++ b/tests/hwsim/test_ap_eap.py @@ -52,6 +52,8 @@ def check_cert_probe_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 "BoringSSL" in tls: # raise HwsimSkip("OCSP not supported with this TLS library: " + tls)