summaryrefslogtreecommitdiffhomepage
path: root/test/runtimes/runner/BUILD
blob: dc0d5d5b4a0fba651457fa5188d2c45b1b97643e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
load("//tools:defs.bzl", "go_binary", "go_test")

package(licenses = ["notice"])

go_binary(
    name = "runner",
    testonly = 1,
    srcs = ["main.go"],
    visibility = ["//test/runtimes:__pkg__"],
    deps = [
        "//pkg/log",
        "//pkg/test/dockerutil",
        "//pkg/test/testutil",
    ],
)

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