diff options
author | Ghanan Gowripalan <ghanan@google.com> | 2020-08-05 17:30:39 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-08-05 17:32:54 -0700 |
commit | 90a2d4e8238a9a92b77d363439485d3e8b2211ac (patch) | |
tree | 4cd2c46d5fbcb61b37cdc213d2ccc9b80ef1756f /pkg/tcpip/tests/integration/BUILD | |
parent | 1403a88c67ccc87af383f5e54fd2f77c673eebe7 (diff) |
Support receiving broadcast IPv4 packets
Test: integration_test.TestIncomingSubnetBroadcast
PiperOrigin-RevId: 325135617
Diffstat (limited to 'pkg/tcpip/tests/integration/BUILD')
-rw-r--r-- | pkg/tcpip/tests/integration/BUILD | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/pkg/tcpip/tests/integration/BUILD b/pkg/tcpip/tests/integration/BUILD new file mode 100644 index 000000000..7fff30462 --- /dev/null +++ b/pkg/tcpip/tests/integration/BUILD @@ -0,0 +1,21 @@ +load("//tools:defs.bzl", "go_test") + +package(licenses = ["notice"]) + +go_test( + name = "integration_test", + size = "small", + srcs = ["multicast_broadcast_test.go"], + deps = [ + "//pkg/tcpip", + "//pkg/tcpip/buffer", + "//pkg/tcpip/header", + "//pkg/tcpip/link/channel", + "//pkg/tcpip/network/ipv4", + "//pkg/tcpip/network/ipv6", + "//pkg/tcpip/stack", + "//pkg/tcpip/transport/udp", + "//pkg/waiter", + "@com_github_google_go_cmp//cmp:go_default_library", + ], +) |