aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/build_defs/hash/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'tools/build_defs/hash/BUILD')
-rw-r--r--tools/build_defs/hash/BUILD19
1 files changed, 17 insertions, 2 deletions
diff --git a/tools/build_defs/hash/BUILD b/tools/build_defs/hash/BUILD
index fc966173b6..ea90ca7d58 100644
--- a/tools/build_defs/hash/BUILD
+++ b/tools/build_defs/hash/BUILD
@@ -3,7 +3,7 @@ licenses(["notice"]) # Apache 2.0
filegroup(
name = "srcs",
srcs = glob(["**"]),
- visibility = ["//tools:__pkg__"],
+ visibility = ["//tools/build_defs:__pkg__"],
)
exports_files(
@@ -29,5 +29,20 @@ sh_test(
data = ["sha256"],
# TODO(laszlocsomor): use the runfiles library after
# https://github.com/bazelbuild/bazel/issues/4460 is fixed for sh_*
- tags = ["-no_windows"],
+ tags = ["no_windows"],
+)
+
+test_suite(
+ name = "windows_tests",
+ tags = [
+ "-no_windows",
+ "-slow",
+ ],
+ visibility = ["//visibility:private"],
+)
+
+test_suite(
+ name = "all_windows_tests",
+ tests = [":windows_tests"],
+ visibility = ["//tools/build_defs:__pkg__"],
)