diff options
author | Junio C Hamano <gitster@pobox.com> | 2010-02-17 14:55:15 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-02-17 14:55:15 -0800 |
commit | 031f82f75124dc96e3bebf8fa0b15eddf5544012 (patch) | |
tree | 294a13008dd8a12588453825ed2266be645b1ddd /t/t7002-grep.sh | |
parent | Merge branch 'jc/typo' into maint (diff) | |
parent | accept "git grep -- pattern" (diff) | |
download | tgif-031f82f75124dc96e3bebf8fa0b15eddf5544012.tar.xz |
Merge branch 'jk/grep-double-dash' into maint
* jk/grep-double-dash:
accept "git grep -- pattern"
Diffstat (limited to 't/t7002-grep.sh')
-rwxr-xr-x | t/t7002-grep.sh | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/t/t7002-grep.sh b/t/t7002-grep.sh index 7144f815c0..0b583cbfc1 100755 --- a/t/t7002-grep.sh +++ b/t/t7002-grep.sh @@ -434,4 +434,37 @@ test_expect_success 'grep -Fi' ' test_cmp expected actual ' +test_expect_success 'setup double-dash tests' ' +cat >double-dash <<EOF && +-- +-> +other +EOF +git add double-dash +' + +cat >expected <<EOF +double-dash:-> +EOF +test_expect_success 'grep -- pattern' ' + git grep -- "->" >actual && + test_cmp expected actual +' +test_expect_success 'grep -- pattern -- pathspec' ' + git grep -- "->" -- double-dash >actual && + test_cmp expected actual +' +test_expect_success 'grep -e pattern -- path' ' + git grep -e "->" -- double-dash >actual && + test_cmp expected actual +' + +cat >expected <<EOF +double-dash:-- +EOF +test_expect_success 'grep -e -- -- path' ' + git grep -e -- -- double-dash >actual && + test_cmp expected actual +' + test_done |