aboutsummaryrefslogtreecommitdiffstats
path: root/extras/hs-test/raw_session_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'extras/hs-test/raw_session_test.go')
-rw-r--r--extras/hs-test/raw_session_test.go12
1 files changed, 8 insertions, 4 deletions
diff --git a/extras/hs-test/raw_session_test.go b/extras/hs-test/raw_session_test.go
index 670ed582522..5c66df0b1ce 100644
--- a/extras/hs-test/raw_session_test.go
+++ b/extras/hs-test/raw_session_test.go
@@ -1,15 +1,19 @@
package main
-func (s *VethsSuite) TestVppEchoQuic() {
+func init() {
+ registerVethTests(VppEchoQuicTest, VppEchoTcpTest)
+}
+
+func VppEchoQuicTest(s *VethsSuite) {
s.testVppEcho("quic")
}
-// udp echo currently broken in vpp, skipping
-func (s *VethsSuite) SkipTestVppEchoUdp() {
+// TODO: udp echo currently broken in vpp
+func VppEchoUdpTest(s *VethsSuite) {
s.testVppEcho("udp")
}
-func (s *VethsSuite) TestVppEchoTcp() {
+func VppEchoTcpTest(s *VethsSuite) {
s.testVppEcho("tcp")
}