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

package(licenses = ["notice"])

go_library(
    name = "testutil",
    testonly = 1,
    srcs = [
        "sh.go",
        "testutil.go",
        "testutil_runfiles.go",
    ],
    visibility = ["//:sandbox"],
    deps = [
        "//pkg/sync",
        "//runsc/config",
        "//runsc/specutils",
        "@com_github_cenkalti_backoff//:go_default_library",
        "@com_github_kr_pty//:go_default_library",
        "@com_github_opencontainers_runtime_spec//specs-go:go_default_library",
        "@org_golang_x_sys//unix:go_default_library",
    ],
)