summaryrefslogtreecommitdiffhomepage
path: root/test/runtimes/runner/BUILD
diff options
context:
space:
mode:
authorAyush Ranjan <ayushranjan@google.com>2020-07-17 10:43:58 -0700
committergVisor bot <gvisor-bot@google.com>2020-07-17 10:45:25 -0700
commitc0ee95198ae4753d02e26e9fbf5341c1d047d9c1 (patch)
tree532a090468dba801fe7d67ab541e9a2bc208c633 /test/runtimes/runner/BUILD
parent7e226c80763351debded7b5a48463d69df7db198 (diff)
Automated rollback of changelist 321647645
PiperOrigin-RevId: 321808673
Diffstat (limited to 'test/runtimes/runner/BUILD')
-rw-r--r--test/runtimes/runner/BUILD22
1 files changed, 22 insertions, 0 deletions
diff --git a/test/runtimes/runner/BUILD b/test/runtimes/runner/BUILD
new file mode 100644
index 000000000..dc0d5d5b4
--- /dev/null
+++ b/test/runtimes/runner/BUILD
@@ -0,0 +1,22 @@
+load("//tools:defs.bzl", "go_binary", "go_test")
+
+package(licenses = ["notice"])
+
+go_binary(
+ name = "runner",
+ testonly = 1,
+ srcs = ["main.go"],
+ visibility = ["//test/runtimes:__pkg__"],
+ deps = [
+ "//pkg/log",
+ "//pkg/test/dockerutil",
+ "//pkg/test/testutil",
+ ],
+)
+
+go_test(
+ name = "exclude_test",
+ size = "small",
+ srcs = ["exclude_test.go"],
+ library = ":runner",
+)