hs-test: use consistent naming convention
[vpp.git] / extras / hs-test / linux_iperf_test.go
old mode 100755 (executable)
new mode 100644 (file)
index 833fb2c..04556a8
@@ -9,11 +9,13 @@ func (s *TapSuite) TestLinuxIperf() {
                stopServerCh <- struct{}{}
        }()
 
-       go StartServerApp(srvCh, stopServerCh, nil)
+       go startServerApp(srvCh, stopServerCh, nil)
        err := <-srvCh
        s.assertNil(err)
        s.log("server running")
-       go StartClientApp(nil, clnCh, clnRes)
+
+       ipAddress := s.netInterfaces[tapInterfaceName].ip4AddressString()
+       go startClientApp(ipAddress, nil, clnCh, clnRes)
        s.log("client running")
        s.log(<-clnRes)
        err = <-clnCh