From: Filip Tehlar Date: Wed, 17 Jan 2024 20:45:28 +0000 (+0100) Subject: hs-test: use specific port for http3 test X-Git-Tag: v24.06-rc0~20 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=87241fefd94423cdc50cfe6b1b54fec955b5f0d3;p=vpp.git hs-test: use specific port for http3 test curl sometimes uses 2 different source ports during the test. Type: test Change-Id: Ib27e9d22a9cc951f4729f4bd0ae99d80bf8d938b Signed-off-by: Filip Tehlar --- diff --git a/extras/hs-test/http_test.go b/extras/hs-test/http_test.go index 53e6ec22ac3..9872f8db560 100644 --- a/extras/hs-test/http_test.go +++ b/extras/hs-test/http_test.go @@ -53,7 +53,7 @@ func (s *NoTopoSuite) TestNginxHttp3() { defer func() { os.Remove(query) }() curlCont := s.getContainerByName("curl") - args := fmt.Sprintf("curl --noproxy '*' --http3-only -k https://%s:8443/%s", serverAddress, query) + args := fmt.Sprintf("curl --noproxy '*' --local-port 55444 --http3-only -k https://%s:8443/%s", serverAddress, query) curlCont.extraRunningArgs = args o, err := curlCont.combinedOutput() s.assertNil(err)