X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=extras%2Fhs-test%2Fraw_session_test.go;h=386f9bc685f4bcdfb283a2a92f0e08ccc2391ff8;hb=fbf5f2b0300c654be5d1962bc207c87f49930faf;hp=655afb6548cf8bb1b502becc3f5d56781d3eae0d;hpb=5ebdd51c605fd64875e682ce7eab69ebda1518eb;p=vpp.git diff --git a/extras/hs-test/raw_session_test.go b/extras/hs-test/raw_session_test.go index 655afb6548c..386f9bc685f 100644 --- a/extras/hs-test/raw_session_test.go +++ b/extras/hs-test/raw_session_test.go @@ -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")