blob: 0b68a760a1791a316b5d038650c8af21d4f4066e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
load("//tools:defs.bzl", "go_test")
package(
default_visibility = ["//test/packetimpact:__subpackages__"],
licenses = ["notice"],
)
go_test(
name = "packetimpact_test",
srcs = ["packetimpact_test.go"],
tags = [
# Not intended to be run directly.
"local",
"manual",
],
deps = [
"//pkg/test/dockerutil",
"//test/packetimpact/netdevs",
],
)
|