diff options
author | 2024-05-06 06:55:34 -0400 | |
---|---|---|
committer | 2024-05-10 03:53:42 +0000 | |
commit | 637edda1324fac88117d5520f94377e5d303128c (patch) | |
tree | 5c4af83fc975aa3a982c2992f5afc49c950914a8 /extras/hs-test/raw_session_test.go | |
parent | 8761095e80fd21216a669797e1d4b45a7aa388a4 (diff) |
hs-test: logging improvements
Type: test
Change-Id: Iffefe085e846b6ba614b0d74c4ba9907080a9a59
Signed-off-by: Adrian Villin <avillin@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 cf74c62cd3e..5c66df0b1ce 100644 --- a/extras/hs-test/raw_session_test.go +++ b/extras/hs-test/raw_session_test.go @@ -1,16 +1,15 @@ package main func init() { - registerVethTests(VppEchoQuicTest, VppEchoTcpTest, VppEchoUdpTest) + registerVethTests(VppEchoQuicTest, VppEchoTcpTest) } func VppEchoQuicTest(s *VethsSuite) { s.testVppEcho("quic") } -// udp echo currently broken in vpp, skipping +// TODO: udp echo currently broken in vpp func VppEchoUdpTest(s *VethsSuite) { - s.skip("Broken") s.testVppEcho("udp") } |