diff options
Diffstat (limited to 'extras/hs-test/raw_session_test.go')
-rw-r--r-- | extras/hs-test/raw_session_test.go | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/extras/hs-test/raw_session_test.go b/extras/hs-test/raw_session_test.go index 670ed582522..cf74c62cd3e 100644 --- a/extras/hs-test/raw_session_test.go +++ b/extras/hs-test/raw_session_test.go @@ -1,15 +1,20 @@ package main -func (s *VethsSuite) TestVppEchoQuic() { +func init() { + registerVethTests(VppEchoQuicTest, VppEchoTcpTest, VppEchoUdpTest) +} + +func VppEchoQuicTest(s *VethsSuite) { s.testVppEcho("quic") } // udp echo currently broken in vpp, skipping -func (s *VethsSuite) SkipTestVppEchoUdp() { +func VppEchoUdpTest(s *VethsSuite) { + s.skip("Broken") s.testVppEcho("udp") } -func (s *VethsSuite) TestVppEchoTcp() { +func VppEchoTcpTest(s *VethsSuite) { s.testVppEcho("tcp") } |