Skip to content

Commit 70b39fb

Browse files
peffgitster
authored andcommitted
t6200: use test_commit_bulk
There's a loop that creates 30 commits using test_commit. Using test_commit_bulk speeds this up from: Benchmark #1: ./t6200-fmt-merge-msg.sh --root=/var/ram/git-tests Time (mean ± σ): 1.926 s ± 0.240 s [User: 1.055 s, System: 0.963 s] Range (min … max): 1.431 s … 2.166 s 10 runs to: Benchmark #1: ./t6200-fmt-merge-msg.sh --root=/var/ram/git-tests Time (mean ± σ): 1.343 s ± 0.179 s [User: 766.5 ms, System: 662.9 ms] Range (min … max): 1.032 s … 1.664 s 10 runs for an average savings of over 30%. Signed-off-by: Jeff King <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent ac093d5 commit 70b39fb

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

t/t6200-fmt-merge-msg.sh

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -66,12 +66,7 @@ test_expect_success setup '
6666
git commit -a -m "Right #5" &&
6767
6868
git checkout -b long &&
69-
i=0 &&
70-
while test $i -lt 30
71-
do
72-
test_commit $i one &&
73-
i=$(($i+1))
74-
done &&
69+
test_commit_bulk --start=0 --message=%s --filename=one 30 &&
7570
7671
git show-branch &&
7772

0 commit comments

Comments
 (0)