summaryrefslogtreecommitdiffhomepage
path: root/test/runtimes/BUILD
blob: 2c472bf8dfd51b557583f2387f6608c607de7747 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# These packages are used to run language runtime tests inside gVisor sandboxes.

load("//tools:defs.bzl", "go_binary", "go_test")
load("//test/runtimes:build_defs.bzl", "runtime_test")

package(licenses = ["notice"])

go_binary(
    name = "runner",
    testonly = 1,
    srcs = ["runner.go"],
    deps = [
        "//runsc/dockerutil",
        "//runsc/testutil",
    ],
)

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",
)

go_test(
    name = "blacklist_test",
    size = "small",
    srcs = ["blacklist_test.go"],
    library = ":runner",
)