summaryrefslogtreecommitdiffhomepage
path: root/runsc/specutils/safemount_test/BUILD
blob: c39c40492b1afeafb791289572a507669176ccb7 (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_binary", "go_test")

package(licenses = ["notice"])

go_test(
    name = "safemount_test",
    size = "small",
    srcs = ["safemount_test.go"],
    data = [":safemount_runner"],
    deps = [
        "//pkg/test/testutil",
        "@org_golang_x_sys//unix:go_default_library",
    ],
)

go_binary(
    name = "safemount_runner",
    srcs = ["safemount_runner.go"],
    deps = [
        "//runsc/specutils",
        "@org_golang_x_sys//unix:go_default_library",
    ],
)