Revision 8d61f0f07d078f4ea05d0b70511b0c8c39d8e863 authored by Junio C Hamano on 18 May 2016, 21:40:13 UTC, committed by Junio C Hamano on 18 May 2016, 21:40:14 UTC
* rn/glossary-typofix:
  Documentation: fix typo 'In such these cases'
2 parent s 977cb3e + 2e39a24
Raw File
p7810-grep.sh
#!/bin/sh

test_description="git-grep performance in various modes"

. ./perf-lib.sh

test_perf_large_repo
test_checkout_worktree

test_perf 'grep worktree, cheap regex' '
	git grep some_nonexistent_string || :
'
test_perf 'grep worktree, expensive regex' '
	git grep "^.* *some_nonexistent_string$" || :
'
test_perf 'grep --cached, cheap regex' '
	git grep --cached some_nonexistent_string || :
'
test_perf 'grep --cached, expensive regex' '
	git grep --cached "^.* *some_nonexistent_string$" || :
'

test_done
back to top