From 2d9ad634c84624c730e1168aa26b84f131917d84 Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Thu, 28 Dec 2017 13:02:04 +0200 Subject: [PATCH] tests: Skip eap_tls_pkcs8_pkcs5_v15 with GnuTLS It looks like this private key format is not supported in GnuTLS (tested with version 3.4.10). 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 660fe9858..2c4c406b2 100644 --- a/tests/hwsim/test_ap_eap.py +++ b/tests/hwsim/test_ap_eap.py @@ -82,7 +82,7 @@ def check_ocsp_support(dev): def check_pkcs5_v15_support(dev): tls = dev.request("GET tls_library") - if "BoringSSL" in tls: + if "BoringSSL" in tls or "GnuTLS" in tls: raise HwsimSkip("PKCS#5 v1.5 not supported with this TLS library: " + tls) def check_ocsp_multi_support(dev): -- 2.47.2