diff options
author | Filip Tehlar <ftehlar@cisco.com> | 2023-05-31 12:26:59 +0200 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2023-06-01 15:50:59 +0000 |
commit | d3b47c6d796bfe31d3495c74f6626f659fa570bb (patch) | |
tree | c13d0be10b7428b7bfbe47ae7e0f0ae82421f56a /extras/hs-test | |
parent | 9a9604b09f15691d7c4ddf29afd99a31e7e31eed (diff) |
hs-test: fix vcl test parameter
Type: test
Signed-off-by: Filip Tehlar <ftehlar@cisco.com>
Change-Id: Ieb6e46439d8e66a792f9c508e7dc49ecdd392487
Diffstat (limited to 'extras/hs-test')
-rw-r--r-- | extras/hs-test/vcl_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extras/hs-test/vcl_test.go b/extras/hs-test/vcl_test.go index 88acefd144f..109b242ee79 100644 --- a/extras/hs-test/vcl_test.go +++ b/extras/hs-test/vcl_test.go @@ -22,7 +22,7 @@ func (s *VethsSuite) testVclEcho(proto string) { clientVclConfContent := fmt.Sprintf(vclTemplate, echoClnContainer.getContainerWorkDir(), "2") echoClnContainer.createFile("/vcl.conf", clientVclConfContent) - testClientCommand := "vcl_test_client -E -p " + proto + " " + serverVethAddress + " " + port + testClientCommand := "vcl_test_client -p " + proto + " " + serverVethAddress + " " + port echoClnContainer.addEnvVar("VCL_CONFIG", "/vcl.conf") o := echoClnContainer.exec(testClientCommand) s.log(o) |