summaryrefslogtreecommitdiffhomepage
path: root/test/runner/setup_container/BUILD
blob: 5b99d1de97acdacd174adf5710bff262fb57cfa3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# setup_container contains a shim binary that runs within the test container
# for syscall tests with container=True.

load("//tools:defs.bzl", "cc_binary")

package(licenses = ["notice"])

cc_binary(
    name = "setup_container",
    testonly = 1,
    srcs = ["setup_container.cc"],
    visibility = ["//test/runner:__subpackages__"],
    deps = [
        "//test/syscalls/linux:socket_netlink_util",
        "//test/syscalls/linux:socket_test_util",
        "//test/util:capability_util",
        "//test/util:posix_error",
    ],
)