summaryrefslogtreecommitdiffhomepage
path: root/test/runtimes/BUILD
blob: 4cd6272224e76e18d177e5bc8c8580e4aea46ee3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
load("//test/runtimes:defs.bzl", "runtime_test")

package(licenses = ["notice"])

runtime_test(
    name = "go1.12",
    blacklist_file = "blacklist_go1.12.csv",
    lang = "go",
)

runtime_test(
    name = "java11",
    blacklist_file = "blacklist_java11.csv",
    lang = "java",
)

runtime_test(
    name = "nodejs12.4.0",
    blacklist_file = "blacklist_nodejs12.4.0.csv",
    lang = "nodejs",
)

runtime_test(
    name = "php7.3.6",
    blacklist_file = "blacklist_php7.3.6.csv",
    lang = "php",
)

runtime_test(
    name = "python3.7.3",
    blacklist_file = "blacklist_python3.7.3.csv",
    lang = "python",
)