You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by bn...@apache.org on 2022/09/01 17:46:04 UTC

[trafficserver] branch 10-Dev updated: active_timeout.test.py: do not enable QUIC yet (#9076)

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

bneradt pushed a commit to branch 10-Dev
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


The following commit(s) were added to refs/heads/10-Dev by this push:
     new 9a319bd41 active_timeout.test.py: do not enable QUIC yet (#9076)
9a319bd41 is described below

commit 9a319bd4162758174b5af214818bc58cf462abdb
Author: Brian Neradt <br...@gmail.com>
AuthorDate: Thu Sep 1 12:45:58 2022 -0500

    active_timeout.test.py: do not enable QUIC yet (#9076)
    
    We are currently working on fixing 10.x when built with openssl-quic.
    Until that is completed, the active_timeout test fails when enabling
    QUIC. Temporarily avoid enabling it until that is resolved.
---
 tests/gold_tests/timeout/active_timeout.test.py | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/tests/gold_tests/timeout/active_timeout.test.py b/tests/gold_tests/timeout/active_timeout.test.py
index 316faef12..aff42fe01 100644
--- a/tests/gold_tests/timeout/active_timeout.test.py
+++ b/tests/gold_tests/timeout/active_timeout.test.py
@@ -22,7 +22,9 @@ Test.SkipUnless(
     Condition.HasCurlFeature('http2')
 )
 
-if Condition.HasATSFeature('TS_USE_QUIC') and Condition.HasCurlFeature('http3'):
+# TODO: Add this back in (i.e., remove the False boolean) when ATS 10.x builds
+# correctly with openssl-quic.
+if False and Condition.HasATSFeature('TS_USE_QUIC') and Condition.HasCurlFeature('http3'):
     ts = Test.MakeATSProcess("ts", select_ports=True, enable_tls=True, enable_quic=True)
 else:
     ts = Test.MakeATSProcess("ts", select_ports=True, enable_tls=True)