diff options
author | Florin Coras <fcoras@cisco.com> | 2023-03-06 09:46:11 -0800 |
---|---|---|
committer | Florin Coras <fcoras@cisco.com> | 2023-03-06 11:16:19 -0800 |
commit | 87767d82d77b75e8b7bc5da11c94f29cb035ed47 (patch) | |
tree | 644e2a07356d456885254f4d729cfac736a6bce8 /extras/hs-test/mirroring_test.go | |
parent | 2d3da8054bab654f36c26a04557c073b12594530 (diff) |
hs-test: nginx mirroring test improvements
- avoid setting LD_PRELOAD for container
- save nginx error log to shared volume
- reduce test run time to 10s
- add vcl and ldp debug env variables to docker file. Default to
disabled.
Type: test
Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: I401ac74e7c0ebe87befedb44150b04f773f244ea
Diffstat (limited to 'extras/hs-test/mirroring_test.go')
-rw-r--r-- | extras/hs-test/mirroring_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extras/hs-test/mirroring_test.go b/extras/hs-test/mirroring_test.go index 97c6c8dbf45..6c42fe8f126 100644 --- a/extras/hs-test/mirroring_test.go +++ b/extras/hs-test/mirroring_test.go @@ -9,7 +9,7 @@ func (s *NginxSuite) TestMirroring() { path := "/64B.json" - testCommand := "wrk -c 20 -t 10 -d 40 http://" + proxyAddress + ":80" + path + testCommand := "wrk -c 20 -t 10 -d 10 http://" + proxyAddress + ":80" + path s.log(testCommand) o, _ := exechelper.Output(testCommand) s.log(string(o)) |