tests: Enable Suite B test cases with OpenSSL 1.1.1

Signed-off-by: Jouni Malinen <jouni@codeaurora.org>
This commit is contained in:
Jouni Malinen 2018-09-17 17:52:38 +03:00 committed by Jouni Malinen
parent 2b92c4f3c0
commit d7e35c4e29

View 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