blob: 0a6d6dfc2198f7bbf0fec141575ff25306eda423 [file] [log] [blame]
Ævar Arnfjörð Bjarmason723fc5a2017-05-25 19:45:24 +00001#!/bin/sh
2
3test_description="Comparison of git-log's --grep regex engines with -F
4
5Set GIT_PERF_4221_LOG_OPTS in the environment to pass options to
6git-grep. Make sure to include a leading space,
7e.g. GIT_PERF_4221_LOG_OPTS=' -i'. Some options to try:
8
9 -i
10 --invert-grep
11 -i --invert-grep
12"
13
14. ./perf-lib.sh
15
16test_perf_large_repo
17test_checkout_worktree
18
19for pattern in 'int' 'uncommon' 'æ'
20do
21 for engine in fixed basic extended perl
22 do
23 if test $engine = "perl" && ! test_have_prereq PCRE
24 then
25 prereq="PCRE"
26 else
27 prereq=""
28 fi
Neeraj Singh5dccd912022-04-04 22:20:17 -070029 test_perf "$engine log$GIT_PERF_4221_LOG_OPTS --grep='$pattern'" \
30 --prereq "$prereq" "
Ævar Arnfjörð Bjarmason723fc5a2017-05-25 19:45:24 +000031 git -c grep.patternType=$engine log --pretty=format:%h$GIT_PERF_4221_LOG_OPTS --grep='$pattern' >'out.$engine' || :
32 "
33 done
34
35 test_expect_success "assert that all engines found the same for$GIT_PERF_4221_LOG_OPTS '$pattern'" '
36 test_cmp out.fixed out.basic &&
37 test_cmp out.fixed out.extended &&
38 if test_have_prereq PCRE
39 then
40 test_cmp out.fixed out.perl
41 fi
42 '
43done
44
45test_done