summaryrefslogtreecommitdiffstats
path: root/extras/hs-test/linux_iperf_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'extras/hs-test/linux_iperf_test.go')
-rwxr-xr-xextras/hs-test/linux_iperf_test.go11
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")
}