diff options
author | Filip Tehlar <ftehlar@cisco.com> | 2024-01-15 13:11:28 +0100 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2024-01-19 17:02:03 +0000 |
commit | 9418143bd4c8f3bb46c32800c1ae85b20bbe8815 (patch) | |
tree | 154b63f2dfb019385c34a90511e10312343a206e /extras/hs-test/raw_session_test.go | |
parent | 705f66e5acbc5c7ebc6e10f89a40c4ccdb787cac (diff) |
hs-test: change convention for skipping tests
Also re-enable external echo QUIC test.
Type: test
Change-Id: I3973409c31fd7c42b97ac3ceae1a5cbad6f1b2b6
Signed-off-by: Filip Tehlar <ftehlar@cisco.com>
Diffstat (limited to 'extras/hs-test/raw_session_test.go')
-rw-r--r-- | extras/hs-test/raw_session_test.go | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/extras/hs-test/raw_session_test.go b/extras/hs-test/raw_session_test.go index 655afb6548c..45c4278c470 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") } |