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')
-rw-r--r--extras/hs-test/linux_iperf_test.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/extras/hs-test/linux_iperf_test.go b/extras/hs-test/linux_iperf_test.go
index 833fb2c2c4a..154a9b543b9 100644
--- a/extras/hs-test/linux_iperf_test.go
+++ b/extras/hs-test/linux_iperf_test.go
@@ -13,7 +13,9 @@ func (s *TapSuite) TestLinuxIperf() {
err := <-srvCh
s.assertNil(err)
s.log("server running")
- go StartClientApp(nil, clnCh, clnRes)
+
+ ipAddress := s.netInterfaces["tap0"].Ip4AddressString()
+ go StartClientApp(ipAddress, nil, clnCh, clnRes)
s.log("client running")
s.log(<-clnRes)
err = <-clnCh