3 test_description
="git-grep performance in various modes"
10 test_perf
'grep worktree, cheap regex' '
11 git grep some_nonexistent_string || :
13 test_perf
'grep worktree, expensive regex' '
14 git grep "^.* *some_nonexistent_string$" || :
16 test_perf
'grep --cached, cheap regex' '
17 git grep --cached some_nonexistent_string || :
19 test_perf
'grep --cached, expensive regex' '
20 git grep --cached "^.* *some_nonexistent_string$" || :