hs-test: change convention for skipping tests
[vpp.git] / extras / hs-test / raw_session_test.go
index 677a47b..45c4278 100644 (file)
@@ -1,12 +1,11 @@
 package main
 
 func (s *VethsSuite) TestVppEchoQuic() {
-       s.skip("quic test skipping..")
        s.testVppEcho("quic")
 }
 
-func (s *VethsSuite) TestVppEchoUdp() {
-       s.skip("udp echo currently broken in vpp, skipping..")
+// udp echo currently broken in vpp, skipping
+func (s *VethsSuite) SkipTestVppEchoUdp() {
        s.testVppEcho("udp")
 }
 
@@ -20,7 +19,7 @@ func (s *VethsSuite) testVppEcho(proto string) {
 
        echoSrvContainer := s.getContainerByName("server-app")
        serverCommand := "vpp_echo server TX=RX" +
-               " socket-name " + echoSrvContainer.getContainerWorkDir() + "/var/run/app_ns_sockets/1" +
+               " socket-name " + echoSrvContainer.getContainerWorkDir() + "/var/run/app_ns_sockets/default" +
                " use-app-socket-api" +
                " uri " + uri
        s.log(serverCommand)
@@ -29,7 +28,7 @@ func (s *VethsSuite) testVppEcho(proto string) {
        echoClnContainer := s.getContainerByName("client-app")
 
        clientCommand := "vpp_echo client" +
-               " socket-name " + echoClnContainer.getContainerWorkDir() + "/var/run/app_ns_sockets/2" +
+               " socket-name " + echoClnContainer.getContainerWorkDir() + "/var/run/app_ns_sockets/default" +
                " use-app-socket-api uri " + uri
        s.log(clientCommand)
        o := echoClnContainer.exec(clientCommand)