hs-test: shortened interface names to avoid character limit
[vpp.git] / extras / hs-test / raw_session_test.go
index 655afb6..386f9bc 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")
 }
 
@@ -15,7 +14,7 @@ func (s *VethsSuite) TestVppEchoTcp() {
 }
 
 func (s *VethsSuite) testVppEcho(proto string) {
-       serverVethAddress := s.netInterfaces["vppsrv"].ip4AddressString()
+       serverVethAddress := s.netInterfaces[serverInterfaceName].ip4AddressString()
        uri := proto + "://" + serverVethAddress + "/12344"
 
        echoSrvContainer := s.getContainerByName("server-app")