X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=extras%2Fhs-test%2Fvcl_test.go;h=f4273c87b14f2a51f0b6471ddab1ab36dd9180a9;hb=f3ee2b636ad3b12e7484ec6fb13f220699417046;hp=5a5ba06bebc6291fcac057fa3f9a79402a4a7c9c;hpb=c204c87c186993704927beffa4d5b1cafaf9a193;p=vpp.git diff --git a/extras/hs-test/vcl_test.go b/extras/hs-test/vcl_test.go index 5a5ba06bebc..f4273c87b14 100755 --- a/extras/hs-test/vcl_test.go +++ b/extras/hs-test/vcl_test.go @@ -32,12 +32,12 @@ func (s *VethsSuite) testVclEcho(proto string) { echoSrvContainer := s.getContainerByName("server-application") // run server app - _, err = echoSrvContainer.execAction("RunEchoServer "+proto) + _, err = echoSrvContainer.execAction("RunEchoServer " + proto) s.assertNil(err) echoClnContainer := s.getContainerByName("client-application") - o, err := echoClnContainer.execAction("RunEchoClient "+proto) + o, err := echoClnContainer.execAction("RunEchoClient " + proto) s.assertNil(err) s.log(o) @@ -60,13 +60,13 @@ func (s *VethsSuite) testRetryAttach(proto string) { s.assertNil(err) echoSrvContainer := s.getContainerByName("server-application") - _, err = echoSrvContainer.execAction("RunVclEchoServer "+proto) + _, err = echoSrvContainer.execAction("RunVclEchoServer " + proto) s.assertNil(err) s.log("This whole test case can take around 3 minutes to run. Please be patient.") s.log("... Running first echo client test, before disconnect.") echoClnContainer := s.getContainerByName("client-application") - _, err = echoClnContainer.execAction("RunVclEchoClient "+proto) + _, err = echoClnContainer.execAction("RunVclEchoClient " + proto) s.assertNil(err) s.log("... First test ended. Stopping VPP server now.") @@ -85,7 +85,7 @@ func (s *VethsSuite) testRetryAttach(proto string) { time.Sleep(30 * time.Second) // Wait a moment for the re-attachment to happen s.log("... Running second echo client test, after disconnect and re-attachment.") - _, err = echoClnContainer.execAction("RunVclEchoClient "+proto) + _, err = echoClnContainer.execAction("RunVclEchoClient " + proto) s.assertNil(err) s.log("Done.") }