diff options
Diffstat (limited to 'test/runtimes/defs.bzl')
-rw-r--r-- | test/runtimes/defs.bzl | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/test/runtimes/defs.bzl b/test/runtimes/defs.bzl deleted file mode 100644 index 3eb494958..000000000 --- a/test/runtimes/defs.bzl +++ /dev/null @@ -1,42 +0,0 @@ -"""Defines a rule for runtime test targets.""" - -load("//tools:defs.bzl", "go_test") - -def runtime_test(name, lang, exclude_file, **kwargs): - go_test( - name = name, - srcs = ["runner.go"], - args = [ - "--lang", - lang, - "--image", - name, # Resolved as images/runtimes/%s. - "--exclude_file", - "test/runtimes/" + exclude_file, - ], - data = [ - exclude_file, - "//test/runtimes/proctor", - ], - defines_main = 1, - tags = [ - "local", - "manual", - ], - deps = [ - "//pkg/log", - "//pkg/test/dockerutil", - "//pkg/test/testutil", - ], - **kwargs - ) - -def exclude_test(name, exclude_file): - """Test that a exclude file parses correctly.""" - go_test( - name = name + "_exclude_test", - library = ":runner", - srcs = ["exclude_test.go"], - args = ["--exclude_file", "test/runtimes/" + exclude_file], - data = [exclude_file], - ) |