summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorKeith Smiley <keithbsmiley@gmail.com>2023-08-04 11:58:33 -0700
committerGitHub <noreply@github.com>2023-08-04 18:58:33 +0000
commit361ea6399992be5a787c966707d35c6960f1b932 (patch)
treec9f98a0b9955db0fd703f2d129dcf8c27779735f /test
parent557daa2a7b9a41f2c564d9b737f907c23333f74e (diff)
downloadbazelbuild-apple_support-361ea6399992be5a787c966707d35c6960f1b932.tar.gz
Remove //test:for_bazel_test from global for_bazel_tests (#240)
If the test/ package is invalid we still shouldn't fail rules_apple. This can happen when bazel deletes an API that we use only in tests in this repo
Diffstat (limited to 'test')
-rw-r--r--test/BUILD2
-rw-r--r--test/shell/BUILD1
2 files changed, 2 insertions, 1 deletions
diff --git a/test/BUILD b/test/BUILD
index 65b2c2f..2cabb10 100644
--- a/test/BUILD
+++ b/test/BUILD
@@ -79,7 +79,7 @@ filegroup(
name = "for_bazel_tests",
testonly = True,
srcs = glob(["**"]),
- visibility = ["//:__pkg__"],
+ visibility = ["//test/shell:__pkg__"],
)
cc_binary(
diff --git a/test/shell/BUILD b/test/shell/BUILD
index 2136ae7..e856628 100644
--- a/test/shell/BUILD
+++ b/test/shell/BUILD
@@ -4,6 +4,7 @@ filegroup(
name = "for_bazel_tests",
testonly = True,
srcs = [
+ "//test:for_bazel_tests",
"@build_bazel_apple_support//:for_bazel_tests",
],
)