diff options
author | Fabricio Voznika <fvoznika@google.com> | 2019-01-25 14:38:10 -0800 |
---|---|---|
committer | Shentubot <shentubot@google.com> | 2019-01-25 14:39:20 -0800 |
commit | c28f886c0bb0ff996e07fc133e0ebe1d842b496a (patch) | |
tree | f37a116ab8552fac479d8184b0272fa01ff0161b /runsc/container/BUILD | |
parent | 876b241fac98e1e23f25ea4ccdca7768e0a7877f (diff) |
Execute statically linked binary
Mounting lib and lib64 are not necessary anymore and simplifies the test.
PiperOrigin-RevId: 230971195
Change-Id: Ib91a3ffcec4b322cd3687c337eedbde9641685ed
Diffstat (limited to 'runsc/container/BUILD')
-rw-r--r-- | runsc/container/BUILD | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/runsc/container/BUILD b/runsc/container/BUILD index d9534cbcc..5dfff5c5e 100644 --- a/runsc/container/BUILD +++ b/runsc/container/BUILD @@ -65,7 +65,9 @@ go_test( go_binary( name = "test_app", + testonly = 1, srcs = ["test_app.go"], + pure = "on", deps = [ "//runsc/test/testutil", "@com_github_google_subcommands//:go_default_library", |