tests: support for expected failures
[vpp.git] / extras / hs-test / linux_iperf_test.go
index 2c3437f..04556a8 100644 (file)
@@ -9,13 +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")
 
-       ipAddress := s.netInterfaces["tap0"].IP4AddressString()
-       go StartClientApp(ipAddress, nil, clnCh, clnRes)
+       ipAddress := s.netInterfaces[tapInterfaceName].ip4AddressString()
+       go startClientApp(ipAddress, nil, clnCh, clnRes)
        s.log("client running")
        s.log(<-clnRes)
        err = <-clnCh