summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYifan Hong <elsk@google.com>2024-04-09 11:34:29 -0700
committerYifan Hong <elsk@google.com>2024-04-09 11:34:29 -0700
commit94e4b5e57ccc5f7414692cf2187b31d4a81b1105 (patch)
treedeafcd9a4bed81296c0705f1fff61f8a18899831
parent12a06ffd56fc58a855bb71a67caec916b67566a0 (diff)
downloadtests-94e4b5e57ccc5f7414692cf2187b31d4a81b1105.tar.gz
Drop //external/zlib:test_mappings.
//external/xxx is not a valid package. Test: TH Bug: 333557250 Change-Id: I573cfdcfe41e620077e6d59c4fc5827aeda0c07f
-rw-r--r--test_mappings/BUILD.bazel7
1 files changed, 6 insertions, 1 deletions
diff --git a/test_mappings/BUILD.bazel b/test_mappings/BUILD.bazel
index ad36d99..b9dcf67 100644
--- a/test_mappings/BUILD.bazel
+++ b/test_mappings/BUILD.bazel
@@ -57,8 +57,13 @@ load("@rules_pkg//pkg:mappings.bzl", "pkg_filegroup")
pkg_filegroup(
name = "non_kernel_test_mappings",
srcs = [
- "//external/zlib:test_mappings",
"//kernel/tests/net/test:test_mappings",
+
+ # Drop external/zlib/TEST_MAPPING because //external is not a valid
+ # package. If we need this in the future, it needs to be changed to
+ # @zlib instead.
+ # "//external/zlib:test_mappings",
+
# Drop prebuilts/rust/TEST_MAPPING because:
# - It doesn't contain useful content; the files it imports do not
# exist in the kernel tree as of 2024-03-28.