. ./test-lib.sh
-test_expect_success 'Check for external grep support' '
- case "$(git grep -h 2>&1|grep ext-grep)" in
- *"(default)"*)
- test_set_prereq EXTGREP
- true;;
- *"(ignored by this build)"*)
- true;;
- *)
- false;;
- esac
-'
-
cat >hello.c <<EOF
#include <stdio.h>
int main(int argc, const char **argv)
z:zzz
EOF
+test_expect_success 'grep -q, silently report matches' '
+ >empty &&
+ git grep -q mmap >actual &&
+ test_cmp empty actual &&
+ test_must_fail git grep -q qfwfq >actual &&
+ test_cmp empty actual
+'
+
# Create 1024 file names that sort between "y" and "z" to make sure
# the two files are handled by different calls to an external grep.
# This depends on MAXARGS in builtin-grep.c being 1024 or less.
test_cmp expected actual
'
-test_expect_success 'grep -C1 --no-ext-grep, hunk mark between files' '
- git grep -C1 --no-ext-grep "^[yz]" >actual &&
+test_expect_success 'grep -C1 hunk mark between files' '
+ git grep -C1 "^[yz]" >actual &&
test_cmp expected actual
'
test_expect_success 'grep with CE_VALID file' '
git update-index --assume-unchanged t/t &&
rm t/t &&
- test "$(git grep --no-ext-grep test)" = "t/t:test" &&
+ test "$(git grep test)" = "t/t:test" &&
git update-index --no-assume-unchanged t/t &&
git checkout t/t
'
test_cmp expected actual
'
-test_expect_success EXTGREP 'external grep is called' '
- GIT_TRACE=2 git grep foo >/dev/null 2>actual &&
- grep "trace: grep:.*foo" actual >/dev/null
-'
-
-test_expect_success EXTGREP 'no external grep when skip-worktree entries exist' '
- git update-index --skip-worktree file &&
- GIT_TRACE=2 git grep foo >/dev/null 2>actual &&
- ! grep "trace: grep:" actual >/dev/null &&
- git update-index --no-skip-worktree file
-'
-
test_done