]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
tests: ap_wpa2_eap_tls_versions to test TLSv1.2 with OpenSSL 1.1
authorJouni Malinen <j@w1.fi>
Mon, 30 Oct 2017 10:08:19 +0000 (12:08 +0200)
committerJouni Malinen <j@w1.fi>
Mon, 30 Oct 2017 10:08:19 +0000 (12:08 +0200)
Change the test condition from "is OpenSSL 1.0.2" to "is not OpenSSL
1.0.1", so that the TLSv1.2 test step gets executed with OpenSSL 1.0.2
and 1.1 (and newer).

Signed-off-by: Jouni Malinen <j@w1.fi>
tests/hwsim/test_ap_eap.py

index f04a7fc69b263858ab2194f75c36505efb39349e..cf17b98be675adba0589cfb913d21cd26c338442 100644 (file)
@@ -5264,7 +5264,7 @@ def test_ap_wpa2_eap_tls_versions(dev, apdev):
 
     tls = dev[0].request("GET tls_library")
     if tls.startswith("OpenSSL"):
-        if "build=OpenSSL 1.0.2" in tls and "run=OpenSSL 1.0.2" in tls:
+        if "build=OpenSSL 1.0.1" not in tls and "run=OpenSSL 1.0.1" not in tls:
             check_tls_ver(dev[0], hapd,
                           "tls_disable_tlsv1_0=1 tls_disable_tlsv1_1=1",
                           "TLSv1.2")