Skip to content

Commit 93c5039

Browse files
committed
Fix tests
1 parent 0dc87c5 commit 93c5039

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

src/test/shell/integration/discard_graph_edges_test.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -274,13 +274,13 @@ function test_packages_cleared() {
274274
# is still low (external packages don't contribute there). We can lower this
275275
# number again once we remove WORKSPACE logic and move repo rules to not use
276276
# Package anymore.
277-
[[ "$package_count" -le 53 ]] \
277+
[[ "$package_count" -le 56 ]] \
278278
|| fail "package count $package_count too high"
279279
globs_count="$(extract_histogram_count "$histo_file" "GlobsValue$")"
280280
[[ "$globs_count" -le 1 ]] \
281281
|| fail "globs count $globs_count too high"
282282
module_count="$(extract_histogram_count "$histo_file" 'eval.Module$')"
283-
[[ "$module_count" -le 270 ]] \
283+
[[ "$module_count" -le 295 ]] \
284284
|| fail "Module count $module_count too high"
285285
ct_count="$(extract_histogram_count "$histo_file" \
286286
'RuleConfiguredTarget$')"

tools/BUILD

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ filegroup(
7777
name = "bzl_srcs",
7878
srcs = [
7979
"//tools:build_defs.bzl",
80+
"//tools/android:bzl_srcs",
8081
"//tools/build_defs:bzl_srcs",
8182
"//tools/build_rules:bzl_srcs",
8283
"//tools/cpp:bzl_srcs",

tools/android/BUILD.tools

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
filegroup(
2+
name = "bzl_srcs",
3+
srcs = glob(["*.bzl"]),
4+
visibility = ["//tools:__pkg__"],
5+
)

0 commit comments

Comments
 (0)