diff options
author | Zach Koopmans <zkoopmans@google.com> | 2020-12-07 16:17:14 -0800 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-12-07 16:20:12 -0800 |
commit | 6d30688bd70370fd9327cd3fca178bb85342cc2a (patch) | |
tree | 6a806c2c5d9ae0a8f91180f73422df1d69b4a8b4 /test/benchmarks/fs/BUILD | |
parent | 615c3380d297ee3c61e47fb48a4cca87f7c99ba0 (diff) |
Fix tags on benchmark targets.
PiperOrigin-RevId: 346203209
Diffstat (limited to 'test/benchmarks/fs/BUILD')
-rw-r--r-- | test/benchmarks/fs/BUILD | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/benchmarks/fs/BUILD b/test/benchmarks/fs/BUILD index 021fae38d..b4f967441 100644 --- a/test/benchmarks/fs/BUILD +++ b/test/benchmarks/fs/BUILD @@ -1,8 +1,8 @@ -load("//tools:defs.bzl", "go_test") +load("//test/benchmarks:defs.bzl", "benchmark_test") package(licenses = ["notice"]) -go_test( +benchmark_test( name = "bazel_test", size = "enormous", srcs = ["bazel_test.go"], @@ -14,7 +14,7 @@ go_test( ], ) -go_test( +benchmark_test( name = "fio_test", size = "enormous", srcs = ["fio_test.go"], |