Browse Source

p4211: explicitly disable renames in no-rename test

p4211 tests line-log performance both with and without "-M".
In v2.9.0, the case without "-M" appears to have regressed
badly, but that is only because we flipped on renames by
default.

Let's have the test explicitly disable renames to get
consistent timings (and to match the presumed intent of the
test, which is to see the effects with and without renames).

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
maint
Jeff King 9 years ago committed by Junio C Hamano
parent
commit
85a727895d
  1. 6
      t/perf/p4211-line-log.sh

6
t/perf/p4211-line-log.sh

@ -23,11 +23,11 @@ test_perf 'git log --follow (baseline for -M)' '
git log --oneline --follow -- "$file" >/dev/null git log --oneline --follow -- "$file" >/dev/null
' '


test_perf 'git log -L' ' test_perf 'git log -L (renames off)' '
git log -L 1:"$file" >/dev/null git log --no-renames -L 1:"$file" >/dev/null
' '


test_perf 'git log -M -L' ' test_perf 'git log -L (renames on)' '
git log -M -L 1:"$file" >/dev/null git log -M -L 1:"$file" >/dev/null
' '



Loading…
Cancel
Save