blob: c2e31670908f9bb03cc8101dffafe9d9948f2165 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
load("//tools:defs.bzl", "go_library")
package(licenses = ["notice"])
go_library(
name = "harness",
testonly = 1,
srcs = [
"harness.go",
"machine.go",
"util.go",
],
visibility = ["//:sandbox"],
deps = [
"//pkg/test/dockerutil",
"//pkg/test/testutil",
],
)
|