diff options
author | Filip Tehlar <ftehlar@cisco.com> | 2023-09-02 08:54:21 +0200 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2023-09-04 20:56:14 +0000 |
commit | 4b3598e39a5b522a55b4b86fa06a323416108a6b (patch) | |
tree | 8266892eee1ef16a5702fccbc00a0be467e96ad1 /extras/hs-test/ldp_test.go | |
parent | a6b1a7d809e746325fe712b9de9ff086e55772dd (diff) |
hs-test: log external apps
Type: test
Change-Id: Id2b0d408bd46f20b81422506f9db4eb655feddac
Signed-off-by: Filip Tehlar <ftehlar@cisco.com>
Diffstat (limited to 'extras/hs-test/ldp_test.go')
-rw-r--r-- | extras/hs-test/ldp_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extras/hs-test/ldp_test.go b/extras/hs-test/ldp_test.go index c2d6f33b714..1906d6b4121 100644 --- a/extras/hs-test/ldp_test.go +++ b/extras/hs-test/ldp_test.go @@ -54,7 +54,7 @@ func (s *VethsSuite) TestLDPreloadIperfVpp() { s.log("attaching server to vpp") srvEnv := append(os.Environ(), ldpreload, "VCL_CONFIG="+serverVclFileName) - go startServerApp(srvCh, stopServerCh, srvEnv) + go s.startServerApp(srvCh, stopServerCh, srvEnv) err = <-srvCh s.assertNil(err) @@ -63,7 +63,7 @@ func (s *VethsSuite) TestLDPreloadIperfVpp() { var clnRes = make(chan string, 1) clnEnv := append(os.Environ(), ldpreload, "VCL_CONFIG="+clientVclFileName) serverVethAddress := s.netInterfaces[serverInterfaceName].ip4AddressString() - go startClientApp(serverVethAddress, clnEnv, clnCh, clnRes) + go s.startClientApp(serverVethAddress, clnEnv, clnCh, clnRes) s.log(<-clnRes) // wait for client's result |