From dda1f6871e3962a4db77e919025ab512a5b3a9fa Mon Sep 17 00:00:00 2001 From: Filip Tehlar Date: Mon, 24 Apr 2023 17:52:50 +0200 Subject: [PATCH] hs-test: adjust performace testing parameters Apache ab sometimes fails during extensive performace testing. This patch makes sure hs-test perf tests always pass. Type: test Signed-off-by: Filip Tehlar Change-Id: I0921682f0f07df3af45b342b9a7ddfa1af037ceb --- extras/hs-test/http_test.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/extras/hs-test/http_test.go b/extras/hs-test/http_test.go index 42eb0f055ea..e576e4a832d 100644 --- a/extras/hs-test/http_test.go +++ b/extras/hs-test/http_test.go @@ -69,7 +69,7 @@ func parseString(s, pattern string) string { func runNginxPerf(s *NoTopoSuite, mode, ab_or_wrk string) error { nRequests := 1000000 - nClients := 2000 + nClients := 1000 serverAddress := s.netInterfaces[tapInterfaceName].peer.ip4AddressString() @@ -87,6 +87,8 @@ func runNginxPerf(s *NoTopoSuite, mode, ab_or_wrk string) error { } else if mode != "cps" { return fmt.Errorf("invalid mode %s; expected cps/rps", mode) } + // don't exit on socket receive errors + args += " -r" args += " http://" + serverAddress + ":80/64B.json" abCont.extraRunningArgs = args o, err := abCont.combinedOutput() -- 2.16.6