diff options
author | Fabricio Voznika <fvoznika@google.com> | 2018-08-21 13:13:34 -0700 |
---|---|---|
committer | Shentubot <shentubot@google.com> | 2018-08-21 13:14:43 -0700 |
commit | d6d165cb0b8147461388287ffd4cfee221940123 (patch) | |
tree | 8beb9ea0e792c6691385f5b9d7ca65f0a1eaf9dc /runsc/sandbox/BUILD | |
parent | 9c407382b031f16160f83383ef8b0d419457829a (diff) |
Initial change for multi-gofer support
PiperOrigin-RevId: 209647293
Change-Id: I980fca1257ea3fcce796388a049c353b0303a8a5
Diffstat (limited to 'runsc/sandbox/BUILD')
-rw-r--r-- | runsc/sandbox/BUILD | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/runsc/sandbox/BUILD b/runsc/sandbox/BUILD index cdacc5e22..d26a4dac6 100644 --- a/runsc/sandbox/BUILD +++ b/runsc/sandbox/BUILD @@ -1,6 +1,6 @@ package(licenses = ["notice"]) # Apache 2.0 -load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") +load("@io_bazel_rules_go//go:def.bzl", "go_library") go_library( name = "sandbox", @@ -29,17 +29,3 @@ go_library( "@org_golang_x_sys//unix:go_default_library", ], ) - -go_test( - name = "sandbox_test", - size = "small", - srcs = ["sandbox_test.go"], - data = [ - "//runsc", - ], - embed = [":sandbox"], - deps = [ - "//pkg/log", - "//runsc/test/testutil", - ], -) |