diff options
author | Samantha Sample <samsample@google.com> | 2019-07-26 10:56:43 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2019-07-26 10:57:53 -0700 |
commit | 444a9d9e545f01dc204f1863e91acb8700823c6e (patch) | |
tree | a812152214de367be6eebca02b8dee9c218196e1 /runsc/test/runtimes/BUILD | |
parent | 7052d21dc45be8ba5ba82117aedc0cb6ecb7c1b7 (diff) |
Publish Dockerfiles and test-runner binaries for running language tests.
By following the directions in the README file, these Dockerfiles can be
built and used to run native language tests for their respective runtimes.
PiperOrigin-RevId: 260174430
Diffstat (limited to 'runsc/test/runtimes/BUILD')
-rw-r--r-- | runsc/test/runtimes/BUILD | 27 |
1 files changed, 1 insertions, 26 deletions
diff --git a/runsc/test/runtimes/BUILD b/runsc/test/runtimes/BUILD index 36d0a761e..ea87029dd 100644 --- a/runsc/test/runtimes/BUILD +++ b/runsc/test/runtimes/BUILD @@ -1,6 +1,6 @@ # These packages are used to run language runtime tests inside gVisor sandboxes. -load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library") +load("@io_bazel_rules_go//go:def.bzl", "go_library") load("//runsc/test:build_defs.bzl", "runtime_test") package(licenses = ["notice"]) @@ -23,28 +23,3 @@ runtime_test( ], deps = ["//runsc/test/testutil"], ) - -go_binary( - name = "proctor-go", - srcs = ["proctor-go.go"], -) - -go_binary( - name = "proctor-java", - srcs = ["proctor-java.go"], -) - -go_binary( - name = "proctor-nodejs", - srcs = ["proctor-nodejs.go"], -) - -go_binary( - name = "proctor-php", - srcs = ["proctor-php.go"], -) - -go_binary( - name = "proctor-python", - srcs = ["proctor-python.go"], -) |