github.com/SagerNet/gvisor@v0.0.0-20210707092255-7731c139d75c/test/benchmarks/defs.bzl (about)

     1  """Defines a rule for benchmark test targets."""
     2  
     3  load("//tools:defs.bzl", "go_test")
     4  
     5  def benchmark_test(name, tags = [], **kwargs):
     6      go_test(
     7          name,
     8          tags = [
     9              # Requires docker and runsc to be configured before the test runs.
    10              "local",
    11              "manual",
    12          ],
    13          **kwargs
    14      )