diff options
author | Maros Ondrejicka <maros.ondrejicka@pantheon.tech> | 2022-12-19 20:35:27 +0100 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2022-12-20 18:49:49 +0000 |
commit | 8753180a80e03dd031fa7f470adbcbb4a611d1c9 (patch) | |
tree | f524d7f4261b5db5861ee7e83822d99ab63f3262 /extras/hs-test/http_test.go | |
parent | 8c626b41eaab5c74e7e023205f1c6cd655d40f44 (diff) |
hs-test: add runtime options
Options
"-p" to not remove topology elements after the test finishes
"-v" from now on extra output from tests is hidden by default,
this will show it again
Type: test
Signed-off-by: Maros Ondrejicka <maros.ondrejicka@pantheon.tech>
Change-Id: I626188561c883534e9004d5130ee2a972d12b4e2
Diffstat (limited to 'extras/hs-test/http_test.go')
-rwxr-xr-x | extras/hs-test/http_test.go | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/extras/hs-test/http_test.go b/extras/hs-test/http_test.go index 1cbddec9e76..ae1c8b82e5a 100755 --- a/extras/hs-test/http_test.go +++ b/extras/hs-test/http_test.go @@ -1,14 +1,13 @@ package main func (s *NsSuite) TestHttpTps() { - t := s.T() finished := make(chan error, 1) server_ip := "10.0.0.2" port := "8080" container := s.getContainerByName("vpp") - t.Log("starting vpp..") + s.log("starting vpp..") // start & configure vpp in the container _, err := container.execAction("ConfigureHttpTps") @@ -21,8 +20,6 @@ func (s *NsSuite) TestHttpTps() { } func (s *VethsSuite) TestHttpCli() { - t := s.T() - serverContainer := s.getContainerByName("server-vpp") clientContainer := s.getContainerByName("client-vpp") @@ -32,12 +29,12 @@ func (s *VethsSuite) TestHttpCli() { _, err = clientContainer.execAction("Configure2Veths cln") s.assertNil(err) - t.Log("configured IPs...") + s.log("configured IPs...") _, err = serverContainer.execAction("RunHttpCliSrv") s.assertNil(err) - t.Log("configured http server") + s.log("configured http server") o, err := clientContainer.execAction("RunHttpCliCln /show/version") s.assertNil(err) |