This is an automated email from the ASF dual-hosted git repository. maskit 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 1e1d1cb4e5 Skip autest for PROXY protocol if the version of curl is old (#12362) 1e1d1cb4e5 is described below commit 1e1d1cb4e5ee1e02e9fe21059343c3f670ace8cb Author: Masakazu Kitajo <mas...@apache.org> AuthorDate: Tue Jul 15 09:39:29 2025 -0600 Skip autest for PROXY protocol if the version of curl is old (#12362) `--haproxy-clientip` is available only on 8.2.0 or later. --- tests/gold_tests/pluginTest/tsapi/test_TSVConnPPInfo.test.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/gold_tests/pluginTest/tsapi/test_TSVConnPPInfo.test.py b/tests/gold_tests/pluginTest/tsapi/test_TSVConnPPInfo.test.py index 2564d28814..5daf5abb47 100644 --- a/tests/gold_tests/pluginTest/tsapi/test_TSVConnPPInfo.test.py +++ b/tests/gold_tests/pluginTest/tsapi/test_TSVConnPPInfo.test.py @@ -22,7 +22,10 @@ Test.Summary = ''' Test TS API to get PROXY protocol info ''' -Test.SkipUnless(Condition.HasProgram("nghttp", "Nghttp need to be installed on system for this test to work"),) +Test.SkipUnless( + Condition.HasProgram("nghttp", "Nghttp need to be installed on system for this test to work"), + Condition.HasCurlVersion("8.2.0"), +) Test.ContinueOnFail = True # ----