From: Jouni Malinen Date: Mon, 17 Sep 2018 14:52:38 +0000 (+0300) Subject: tests: Enable Suite B test cases with OpenSSL 1.1.1 X-Git-Tag: hostap_2_7~176 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d7e35c4e297c7dea19b74d165f3425cb4cece4de;p=thirdparty%2Fhostap.git tests: Enable Suite B test cases with OpenSSL 1.1.1 Signed-off-by: Jouni Malinen --- diff --git a/tests/hwsim/test_suite_b.py b/tests/hwsim/test_suite_b.py index acbfc0be8..db2cac7e0 100644 --- a/tests/hwsim/test_suite_b.py +++ b/tests/hwsim/test_suite_b.py @@ -27,7 +27,7 @@ def check_suite_b_tls_lib(dev, dhe=False, level128=False): if not tls.startswith("OpenSSL"): raise HwsimSkip("TLS library not supported for Suite B: " + tls) supported = False - for ver in [ '1.0.2', '1.1.0' ]: + for ver in [ '1.0.2', '1.1.0', '1.1.1' ]: if "build=OpenSSL " + ver in tls and "run=OpenSSL " + ver in tls: supported = True break