summaryrefslogtreecommitdiffstats
path: root/extras/hs-test/linux_iperf_test.go
diff options
context:
space:
mode:
authorAdrian Villin <avillin@cisco.com>2024-08-15 12:53:53 +0200
committerFlorin Coras <florin.coras@gmail.com>2024-08-27 19:05:36 +0000
commitd01a63abd41dfd2359e18ca559a0309cfe8c0018 (patch)
treeef20ad4da2b6645a1f82bc8cf092c59dc63d3527 /extras/hs-test/linux_iperf_test.go
parenta647a83496f81a83c02fe9317955a781b7f95d8c (diff)
hs-test: added a redis-benchmark test
- basically a copy of LdpIperf test - small update of LdpIperf test - new LDP suite Type: test Change-Id: I3f8653288c6fc6dfd6a061315e983c000974d3ff Signed-off-by: Adrian Villin <avillin@cisco.com>
Diffstat (limited to 'extras/hs-test/linux_iperf_test.go')
-rw-r--r--extras/hs-test/linux_iperf_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/extras/hs-test/linux_iperf_test.go b/extras/hs-test/linux_iperf_test.go
index f49d9bcf227..9342e862f04 100644
--- a/extras/hs-test/linux_iperf_test.go
+++ b/extras/hs-test/linux_iperf_test.go
@@ -21,7 +21,7 @@ func LinuxIperfTest(s *TapSuite) {
go func() {
defer GinkgoRecover()
- s.StartServerApp(srvCh, stopServerCh, nil)
+ s.StartIperfServerApp(srvCh, stopServerCh, nil)
}()
err := <-srvCh
s.AssertNil(err, fmt.Sprint(err))
@@ -30,7 +30,7 @@ func LinuxIperfTest(s *TapSuite) {
ipAddress := s.GetInterfaceByName(TapInterfaceName).Ip4AddressString()
go func() {
defer GinkgoRecover()
- s.StartClientApp(ipAddress, nil, clnCh, clnRes)
+ s.StartIperfClientApp(ipAddress, nil, clnCh, clnRes)
}()
s.Log("client running")
s.Log(<-clnRes)