Browse Source

tests: ap_wpa2_eap_tls_versions to test TLSv1.2 with OpenSSL 1.1

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>
Jouni Malinen 7 years ago
parent
commit
41d5af5544
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/hwsim/test_ap_eap.py

+ 1 - 1
tests/hwsim/test_ap_eap.py

@@ -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")