summaryrefslogtreecommitdiffhomepage
path: root/test/packetimpact/tests/BUILD
diff options
context:
space:
mode:
authorJay Zhuang <jayzhuang@google.com>2020-07-17 09:12:48 -0700
committergVisor bot <gvisor-bot@google.com>2020-07-17 09:14:17 -0700
commit7e226c80763351debded7b5a48463d69df7db198 (patch)
treea1c486723d299de281d58ac7cf7f03ac1c79b77b /test/packetimpact/tests/BUILD
parentdcf6ddc2772b8fcf824f1f48e0281e1cc80b93ea (diff)
Test UDP packets with mcast source addr are discarded
PiperOrigin-RevId: 321790802
Diffstat (limited to 'test/packetimpact/tests/BUILD')
-rw-r--r--test/packetimpact/tests/BUILD11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/packetimpact/tests/BUILD b/test/packetimpact/tests/BUILD
index 8051562b2..6a07889be 100644
--- a/test/packetimpact/tests/BUILD
+++ b/test/packetimpact/tests/BUILD
@@ -27,6 +27,17 @@ packetimpact_go_test(
)
packetimpact_go_test(
+ name = "udp_discard_mcast_source_addr",
+ srcs = ["udp_discard_mcast_source_addr_test.go"],
+ deps = [
+ "//pkg/tcpip",
+ "//pkg/tcpip/header",
+ "//test/packetimpact/testbench",
+ "@org_golang_x_sys//unix:go_default_library",
+ ],
+)
+
+packetimpact_go_test(
name = "udp_recv_mcast_bcast",
srcs = ["udp_recv_mcast_bcast_test.go"],
# TODO(b/152813495): Fix netstack then remove the line below.