github.com/SagerNet/gvisor@v0.0.0-20210707092255-7731c139d75c/test/e2e/BUILD (about)

     1  load("//tools:defs.bzl", "go_library", "go_test")
     2  
     3  package(licenses = ["notice"])
     4  
     5  go_test(
     6      name = "integration_test",
     7      size = "large",
     8      srcs = [
     9          "exec_test.go",
    10          "integration_test.go",
    11      ],
    12      library = ":integration",
    13      tags = [
    14          # Requires docker and runsc to be configured before the test runs.
    15          "local",
    16          "manual",
    17      ],
    18      visibility = ["//:sandbox"],
    19      deps = [
    20          "//pkg/abi/linux",
    21          "//pkg/bits",
    22          "//pkg/test/dockerutil",
    23          "//pkg/test/testutil",
    24          "//runsc/specutils",
    25          "@com_github_docker_docker//api/types/mount:go_default_library",
    26      ],
    27  )
    28  
    29  go_library(
    30      name = "integration",
    31      srcs = ["integration.go"],
    32  )