]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
tests: Enable Suite B test cases with OpenSSL 1.1.1
authorJouni Malinen <jouni@codeaurora.org>
Mon, 17 Sep 2018 14:52:38 +0000 (17:52 +0300)
committerJouni Malinen <j@w1.fi>
Mon, 17 Sep 2018 14:52:38 +0000 (17:52 +0300)
Signed-off-by: Jouni Malinen <jouni@codeaurora.org>
tests/hwsim/test_suite_b.py

index acbfc0be85616340b87b7d4b9e5b5dfcc6f64af7..db2cac7e0e70bccde980a21eb91a81f6b4580735 100644 (file)
@@ -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