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 2019/05/16 22:12:45 UTC

[trafficserver] branch master updated: Check for OpenSSSL v1.1.1, for now, for this test

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 6c51b25  Check for OpenSSSL v1.1.1, for now, for this test
6c51b25 is described below

commit 6c51b258f90163abc667c9ec2036af76940fbdac
Author: Leif Hedstrom <zw...@apache.org>
AuthorDate: Thu May 16 11:23:43 2019 -0600

    Check for OpenSSSL v1.1.1, for now, for this test
    
    This doesn't compile with older OpenSSL, particularly on
    CentOS7 which has v1.0.2, our oldest supported version. A
    better fix should be put in place, but the issue is that
    tsxs does not get the defines from ink_config.h[.in].
---
 tests/gold_tests/tls/tls_hooks_client_verify.test.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/tests/gold_tests/tls/tls_hooks_client_verify.test.py b/tests/gold_tests/tls/tls_hooks_client_verify.test.py
index 565c0d7..12bf397 100644
--- a/tests/gold_tests/tls/tls_hooks_client_verify.test.py
+++ b/tests/gold_tests/tls/tls_hooks_client_verify.test.py
@@ -24,6 +24,8 @@ Test.Summary = '''
 Test different combinations of TLS handshake hooks to ensure they are applied consistently.
 '''
 
+Test.SkipUnless(Condition.HasOpenSSLVersion("1.1.1"))
+
 ts = Test.MakeATSProcess("ts", select_ports=False)
 server = Test.MakeOriginServer("server", ssl=True)
 request_header = {"headers": "GET / HTTP/1.1\r\nHost: www.example.com\r\n\r\n", "timestamp": "1469733493.993", "body": ""}