gvisor/pkg/tcpip/tests/integration/BUILD

27 lines
655 B
Python

load("//tools:defs.bzl", "go_test")
package(licenses = ["notice"])
go_test(
name = "integration_test",
size = "small",
srcs = [
"loopback_test.go",
"multicast_broadcast_test.go",
],
deps = [
"//pkg/tcpip",
"//pkg/tcpip/buffer",
"//pkg/tcpip/header",
"//pkg/tcpip/link/channel",
"//pkg/tcpip/link/loopback",
"//pkg/tcpip/network/ipv4",
"//pkg/tcpip/network/ipv6",
"//pkg/tcpip/stack",
"//pkg/tcpip/transport/icmp",
"//pkg/tcpip/transport/udp",
"//pkg/waiter",
"@com_github_google_go_cmp//cmp:go_default_library",
],
)