@@ -257,14 +257,14 @@ function test_packages_cleared() {
257
257
' RuleConfiguredTarget$' ) "
258
258
[[ " $ct_count " -ge 18 ]] \
259
259
|| fail " RuleConfiguredTarget count $ct_count too low: did you move/rename the class?"
260
- local edgeless_entry_count =" $( extract_histogram_count " $histo_file " \
261
- ' EdgelessInMemoryNodeEntry ' ) "
262
- [[ " $edgeless_entry_count " -eq 0 ]] \
263
- || fail " $edgeless_entry_count EdgelessInMemoryNodeEntry instances found in build keeping edges"
264
- local node_entry_count =" $( extract_histogram_count " $histo_file " \
260
+ local non_incremental_entry_count =" $( extract_histogram_count " $histo_file " \
261
+ ' NonIncrementalInMemoryNodeEntry ' ) "
262
+ [[ " $non_incremental_entry_count " -eq 0 ]] \
263
+ || fail " $non_incremental_entry_count NonIncrementalInMemoryNodeEntry instances found in build keeping edges"
264
+ local incremental_entry_count =" $( extract_histogram_count " $histo_file " \
265
265
' \.IncrementalInMemoryNodeEntry' ) "
266
- [[ " $node_entry_count " -ge 100 ]] \
267
- || fail " Only $node_entry_count IncrementalInMemoryNodeEntry instances found in build keeping edges"
266
+ [[ " $incremental_entry_count " -ge 100 ]] \
267
+ || fail " Only $incremental_entry_count IncrementalInMemoryNodeEntry instances found in build keeping edges"
268
268
local histo_file=" $( prepare_histogram " $BUILD_FLAGS " ) "
269
269
package_count=" $( extract_histogram_count " $histo_file " \
270
270
' devtools\.build\.lib\..*\.Package$' ) "
@@ -281,14 +281,14 @@ function test_packages_cleared() {
281
281
' RuleConfiguredTarget$' ) "
282
282
[[ " $ct_count " -le 1 ]] \
283
283
|| fail " too many RuleConfiguredTarget: expected at most 1, got $ct_count "
284
- edgeless_entry_count =" $( extract_histogram_count " $histo_file " \
285
- ' EdgelessInMemoryNodeEntry ' ) "
286
- [[ " $edgeless_entry_count " -ge 100 ]] \
287
- || fail " Not enough ($edgless_entry_count ) EdgelessInMemoryNodeEntry instances found in build discarding edges"
288
- node_entry_count =" $( extract_histogram_count " $histo_file " \
284
+ non_incremental_entry_count =" $( extract_histogram_count " $histo_file " \
285
+ ' NonIncrementalInMemoryNodeEntry ' ) "
286
+ [[ " $non_incremental_entry_count " -ge 100 ]] \
287
+ || fail " Not enough ($non_incremental_entry_count ) NonIncrementalInMemoryNodeEntry instances found in build discarding edges"
288
+ incremental_entry_count =" $( extract_histogram_count " $histo_file " \
289
289
' \.IncrementalInMemoryNodeEntry' ) "
290
- [[ " $node_entry_count " -le 10 ]] \
291
- || fail " Too many ($node_entry_count ) IncrementalInMemoryNodeEntry instances found in build discarding edges"
290
+ [[ " $incremental_entry_count " -le 10 ]] \
291
+ || fail " Too many ($incremental_entry_count ) IncrementalInMemoryNodeEntry instances found in build discarding edges"
292
292
}
293
293
294
294
# Action conflicts can cause deletion of nodes, and deletion is tricky with no edges.
0 commit comments