3 test_description
="Comparison of git-log's --grep regex engines
5 Set GIT_PERF_4220_LOG_OPTS in the environment to pass options to
6 git-grep. Make sure to include a leading space,
7 e.g. GIT_PERF_4220_LOG_OPTS=' -i'. Some options to try:
17 test_checkout_worktree
23 '\(e.t[^ ]*\|v.ry\) rare' \
24 'm\(ú\|u\)lt.b\(æ\|y\)te'
26 for engine
in basic extended perl
28 if test $engine != "basic"
30 # Poor man's basic -> extended converter.
31 pattern
=$
(echo $pattern |
sed 's/\\//g')
33 if test $engine = "perl" && ! test_have_prereq PCRE
39 test_perf
$prereq "$engine log$GIT_PERF_4220_LOG_OPTS --grep='$pattern'" "
40 git -c grep.patternType=$engine log --pretty=format:%h$GIT_PERF_4220_LOG_OPTS --grep='$pattern' >'out.$engine' || :
44 test_expect_success
"assert that all engines found the same for$GIT_PERF_4220_LOG_OPTS '$pattern'" '
45 test_cmp out.basic out.extended &&
46 if test_have_prereq PCRE
48 test_cmp out.basic out.perl