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 <j@w1.fi>
This commit is contained in:
parent
0fc1b583e2
commit
bb0a72ab46
1 changed files with 2 additions and 0 deletions
|
@ -52,6 +52,8 @@ def check_cert_probe_support(dev):
|
||||||
|
|
||||||
def check_ocsp_support(dev):
|
def check_ocsp_support(dev):
|
||||||
tls = dev.request("GET tls_library")
|
tls = dev.request("GET tls_library")
|
||||||
|
if tls.startswith("internal"):
|
||||||
|
raise HwsimSkip("OCSP not supported with this TLS library: " + tls)
|
||||||
#if "BoringSSL" in tls:
|
#if "BoringSSL" in tls:
|
||||||
# raise HwsimSkip("OCSP not supported with this TLS library: " + tls)
|
# raise HwsimSkip("OCSP not supported with this TLS library: " + tls)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue