You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by zw...@apache.org on 2021/11/17 19:21:43 UTC

[trafficserver] branch 9.2.x updated: Marks tls_engine test as OpenSSL-only (#8509)

This is an automated email from the ASF dual-hosted git repository.

zwoop pushed a commit to branch 9.2.x
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


The following commit(s) were added to refs/heads/9.2.x by this push:
     new 8aee369  Marks tls_engine test as OpenSSL-only (#8509)
8aee369 is described below

commit 8aee3691403e6f6dde911fa5fc1b315ba7703dd7
Author: Randall Meyer <rr...@apache.org>
AuthorDate: Wed Nov 10 08:40:00 2021 -0800

    Marks tls_engine test as OpenSSL-only (#8509)
    
    Test exercises OpenSSL specific APIs
    
    (cherry picked from commit 2604a6c053d7ccca97a6bf367187b9a8afd066f4)
---
 tests/gold_tests/tls/tls_engine.test.py | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/tests/gold_tests/tls/tls_engine.test.py b/tests/gold_tests/tls/tls_engine.test.py
index 83c5505..7ff16b3 100644
--- a/tests/gold_tests/tls/tls_engine.test.py
+++ b/tests/gold_tests/tls/tls_engine.test.py
@@ -27,7 +27,10 @@ Test.Summary = '''
 Test tls via the async interface with the sample async_engine
 '''
 
-Test.SkipUnless(Condition.HasOpenSSLVersion('1.1.1'))
+Test.SkipUnless(
+    Condition.HasOpenSSLVersion('1.1.1'),
+    Condition.IsOpenSSL(),
+)
 
 # Define default ATS
 ts = Test.MakeATSProcess("ts", select_ports=True, enable_tls=True)