@@ -230,8 +230,9 @@ test_expect_merge_algorithm failure success 'Objects downloaded for single relev
230
230
grep fetch_count trace.output | cut -d "|" -f 9 | tr -d " ." >actual &&
231
231
test_cmp expect actual &&
232
232
233
- # Check the number of fetch commands exec-ed
234
- grep d0.*fetch.negotiationAlgorithm trace.output >fetches &&
233
+ # Check the number of fetch commands exec-ed by filtering trace to
234
+ # child_start events by the top-level program (2nd field == d0)
235
+ grep " d0 .* child_start .*fetch.negotiationAlgorithm" trace.output >fetches &&
235
236
test_line_count = 2 fetches &&
236
237
237
238
git rev-list --objects --all --missing=print |
@@ -318,8 +319,9 @@ test_expect_merge_algorithm failure success 'Objects downloaded when a directory
318
319
grep fetch_count trace.output | cut -d "|" -f 9 | tr -d " ." >actual &&
319
320
test_cmp expect actual &&
320
321
321
- # Check the number of fetch commands exec-ed
322
- grep d0.*fetch.negotiationAlgorithm trace.output >fetches &&
322
+ # Check the number of fetch commands exec-ed by filtering trace to
323
+ # child_start events by the top-level program (2nd field == d0)
324
+ grep " d0 .* child_start .*fetch.negotiationAlgorithm" trace.output >fetches &&
323
325
test_line_count = 1 fetches &&
324
326
325
327
git rev-list --objects --all --missing=print |
@@ -422,8 +424,9 @@ test_expect_merge_algorithm failure success 'Objects downloaded with lots of ren
422
424
grep fetch_count trace.output | cut -d "|" -f 9 | tr -d " ." >actual &&
423
425
test_cmp expect actual &&
424
426
425
- # Check the number of fetch commands exec-ed
426
- grep d0.*fetch.negotiationAlgorithm trace.output >fetches &&
427
+ # Check the number of fetch commands exec-ed by filtering trace to
428
+ # child_start events by the top-level program (2nd field == d0)
429
+ grep " d0 .* child_start .*fetch.negotiationAlgorithm" trace.output >fetches &&
427
430
test_line_count = 4 fetches &&
428
431
429
432
git rev-list --objects --all --missing=print |
0 commit comments