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/linux_iperf_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/linux_iperf_test.go')
-rwxr-xr-x | extras/hs-test/linux_iperf_test.go | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/extras/hs-test/linux_iperf_test.go b/extras/hs-test/linux_iperf_test.go index bef07fb7d65..38649e5d4f4 100755 --- a/extras/hs-test/linux_iperf_test.go +++ b/extras/hs-test/linux_iperf_test.go @@ -1,10 +1,10 @@ package main func (s *TapSuite) TestLinuxIperf() { - t := s.T() clnCh := make(chan error) stopServerCh := make(chan struct{}) srvCh := make(chan error, 1) + clnRes := make(chan string, 1) defer func() { stopServerCh <- struct{}{} }() @@ -12,10 +12,11 @@ func (s *TapSuite) TestLinuxIperf() { go StartServerApp(srvCh, stopServerCh, nil) err := <-srvCh s.assertNil(err) - t.Log("server running") - go StartClientApp(nil, clnCh) - t.Log("client running") + s.log("server running") + go StartClientApp(nil, clnCh, clnRes) + s.log("client running") + s.log(<- clnRes) err = <-clnCh s.assertNil(err) - t.Log("Test completed") + s.log("Test completed") } |