summaryrefslogtreecommitdiffhomepage
path: root/runsc/test/root/BUILD
blob: dbc0f1d2693dbf3bd1b47d317dc6119fdd624b11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package(licenses = ["notice"])  # Apache 2.0

load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")

go_library(
    name = "root",
    srcs = ["root.go"],
    importpath = "gvisor.googlesource.com/gvisor/runsc/test/root",
)

go_test(
    name = "root_test",
    size = "small",
    srcs = ["chroot_test.go"],
    embed = [":root"],
    tags = [
        # Requires docker and runsc to be configured before the test runs.
        # Also test only runs as root.
        "manual",
        "local",
    ],
    deps = [
        "//runsc/specutils",
        "//runsc/test/testutil",
        "@com_github_syndtr_gocapability//capability:go_default_library",
    ],
)