diff options
Diffstat (limited to 'runsc/container/BUILD')
-rw-r--r-- | runsc/container/BUILD | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/runsc/container/BUILD b/runsc/container/BUILD index 2936b7cdf..13709a0ae 100644 --- a/runsc/container/BUILD +++ b/runsc/container/BUILD @@ -1,4 +1,4 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library", "go_test") +load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") package(licenses = ["notice"]) @@ -37,8 +37,8 @@ go_test( "shared_volume_test.go", ], data = [ - ":test_app", "//runsc", + "//runsc/container/test_app", ], embed = [":container"], shard_count = 5, @@ -61,14 +61,3 @@ go_test( "@org_golang_x_sys//unix:go_default_library", ], ) - -go_binary( - name = "test_app", - testonly = 1, - srcs = ["test_app.go"], - pure = "on", - deps = [ - "//runsc/test/testutil", - "@com_github_google_subcommands//:go_default_library", - ], -) |