blob: 3972244b975ac774639dde9bec9c577893b4c955 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
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/test/dockerutil",
"//pkg/test/testutil",
],
)
go_test(
name = "exclude_test",
size = "small",
srcs = ["exclude_test.go"],
library = ":runner",
)
|