summaryrefslogtreecommitdiffhomepage
path: root/test/runtimes/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'test/runtimes/BUILD')
-rw-r--r--test/runtimes/BUILD33
1 files changed, 33 insertions, 0 deletions
diff --git a/test/runtimes/BUILD b/test/runtimes/BUILD
new file mode 100644
index 000000000..022de5ff7
--- /dev/null
+++ b/test/runtimes/BUILD
@@ -0,0 +1,33 @@
+load("//test/runtimes:defs.bzl", "runtime_test")
+
+package(licenses = ["notice"])
+
+runtime_test(
+ name = "go1.12",
+ exclude_file = "exclude_go1.12.csv",
+ lang = "go",
+)
+
+runtime_test(
+ name = "java11",
+ exclude_file = "exclude_java11.csv",
+ lang = "java",
+)
+
+runtime_test(
+ name = "nodejs12.4.0",
+ exclude_file = "exclude_nodejs12.4.0.csv",
+ lang = "nodejs",
+)
+
+runtime_test(
+ name = "php7.3.6",
+ exclude_file = "exclude_php7.3.6.csv",
+ lang = "php",
+)
+
+runtime_test(
+ name = "python3.7.3",
+ exclude_file = "exclude_python3.7.3.csv",
+ lang = "python",
+)