This is an automated email from the ASF dual-hosted git repository. cmcfarlen pushed a commit to branch 10.1.x in repository https://gitbox.apache.org/repos/asf/trafficserver.git
commit 5be2fbcff3c95835273f59417775d21d8e50e8d5 Author: Masakazu Kitajo <[email protected]> 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. (cherry picked from commit 1e1d1cb4e5ee1e02e9fe21059343c3f670ace8cb) --- 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 # ----
