summaryrefslogtreecommitdiffhomepage
path: root/test/runner/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'test/runner/BUILD')
-rw-r--r--test/runner/BUILD30
1 files changed, 0 insertions, 30 deletions
diff --git a/test/runner/BUILD b/test/runner/BUILD
deleted file mode 100644
index 2d93aa6af..000000000
--- a/test/runner/BUILD
+++ /dev/null
@@ -1,30 +0,0 @@
-load("//tools:defs.bzl", "bzl_library", "go_binary")
-
-package(licenses = ["notice"])
-
-go_binary(
- name = "runner",
- testonly = 1,
- srcs = ["main.go"],
- data = [
- "//runsc",
- "//test/runner/setup_container",
- ],
- visibility = ["//:sandbox"],
- deps = [
- "//pkg/log",
- "//pkg/test/testutil",
- "//runsc/specutils",
- "//test/runner/gtest",
- "//test/uds",
- "@com_github_opencontainers_runtime_spec//specs-go:go_default_library",
- "@com_github_syndtr_gocapability//capability:go_default_library",
- "@org_golang_x_sys//unix:go_default_library",
- ],
-)
-
-bzl_library(
- name = "defs_bzl",
- srcs = ["defs.bzl"],
- visibility = ["//visibility:private"],
-)