gvisor/pkg/test/dockerutil/BUILD

43 lines
1.2 KiB
Python
Raw Normal View History

load("//tools:defs.bzl", "go_library", "go_test")
package(licenses = ["notice"])
go_library(
name = "dockerutil",
testonly = 1,
srcs = [
"container.go",
"dockerutil.go",
"exec.go",
"network.go",
"profile.go",
],
visibility = ["//:sandbox"],
deps = [
"//pkg/test/testutil",
"@com_github_docker_docker//api/types:go_default_library",
"@com_github_docker_docker//api/types/container:go_default_library",
"@com_github_docker_docker//api/types/mount:go_default_library",
"@com_github_docker_docker//api/types/network:go_default_library",
"@com_github_docker_docker//client:go_default_library",
"@com_github_docker_docker//pkg/stdcopy:go_default_library",
"@com_github_docker_go_connections//nat:go_default_library",
],
)
go_test(
name = "profile_test",
size = "large",
srcs = [
"profile_test.go",
],
library = ":dockerutil",
tags = [
# Requires docker and runsc to be configured before test runs.
# Also requires the test to be run as root.
"manual",
"local",
],
visibility = ["//:sandbox"],
)