aboutsummaryrefslogtreecommitdiffstats
path: root/extras/hs-test/http_test.go
diff options
context:
space:
mode:
authorFlorin Coras <fcoras@cisco.com>2023-02-28 14:51:03 -0800
committerFlorin Coras <florin.coras@gmail.com>2023-03-01 00:12:01 +0000
commite2415f79f722ee7f31617ebb6bd82e6b9ad16727 (patch)
treef68beac46c8b85bdd683cce65271b06eb9b51fa0 /extras/hs-test/http_test.go
parent3d6156fed8be0c1e3ffe081be16f82be5be603fd (diff)
hs-test: fix wait for app after ldp change
After gerrit 38370 (729b9c94), apps are registered via ldp using program name. Update tests to support that. Also add make file help for UNCONFIGURE. Type: test Signed-off-by: Florin Coras <fcoras@cisco.com> Change-Id: I4ad50abfd175664b47b358df1a72e0758f51190d
Diffstat (limited to 'extras/hs-test/http_test.go')
-rw-r--r--extras/hs-test/http_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/extras/hs-test/http_test.go b/extras/hs-test/http_test.go
index c1b3b7f2a03..3f1d303d422 100644
--- a/extras/hs-test/http_test.go
+++ b/extras/hs-test/http_test.go
@@ -48,7 +48,7 @@ func (s *NoTopoSuite) TestNginxAsServer() {
s.assertNil(nginxCont.run())
vpp := s.getContainerByName("vpp").vppInstance
- vpp.waitForApp("-app", 5)
+ vpp.waitForApp("nginx-", 5)
serverAddress := s.netInterfaces[tapInterfaceName].Peer().IP4AddressString()
@@ -85,7 +85,7 @@ func runNginxPerf(s *NoTopoSuite, mode, ab_or_wrk string) error {
nginxCont := s.getContainerByName("nginx")
s.assertNil(nginxCont.run())
- vpp.waitForApp("-app", 5)
+ vpp.waitForApp("nginx-", 5)
cmd := exec.Command(exeName, args...)
s.log(cmd)