aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/test
diff options
context:
space:
mode:
Diffstat (limited to 'src/test')
-rw-r--r--src/test/shell/bazel/BUILD11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/test/shell/bazel/BUILD b/src/test/shell/bazel/BUILD
index 3d70474b93..06d0032fcd 100644
--- a/src/test/shell/bazel/BUILD
+++ b/src/test/shell/bazel/BUILD
@@ -120,10 +120,13 @@ sh_test(
name = "bazel_toolchain_test",
size = "medium",
srcs = ["bazel_toolchain_test.sh"],
- data = [
- ":test-deps",
- "//src/test/shell/bazel/testdata:bazel_toolchain_test_project_pkg",
- ],
+ data = [":test-deps"] + select({
+ "//src:darwin": [],
+ "//src:darwin_x86_64": [],
+ "//src:windows": [],
+ "//src:windows_msvc": [],
+ "//conditions:default": ["//src/test/shell/bazel/testdata:bazel_toolchain_test_project_pkg"],
+ }),
tags = [
"requires-network",
],