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

     1  load("//tools:defs.bzl", "go_library", "go_test")
     2  
     3  package(licenses = ["notice"])
     4  
     5  go_test(
     6      name = "fsstress_test",
     7      size = "large",
     8      srcs = [
     9          "fsstress_test.go",
    10      ],
    11      library = ":fsstress",
    12      tags = [
    13          # Requires docker and runsc to be configured before the test runs.
    14          "manual",
    15          "local",
    16      ],
    17      deps = ["//pkg/test/dockerutil"],
    18  )
    19  
    20  go_library(
    21      name = "fsstress",
    22      srcs = ["fsstress.go"],
    23  )