summaryrefslogtreecommitdiff
path: root/t/t7810-grep.sh
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2011-05-16 07:10:14 (GMT)
committerJunio C Hamano <gitster@pobox.com>2011-05-16 07:10:14 (GMT)
commitdd0a21ede0998ec790c37865c7dc119814ac7745 (patch)
tree1b257b7ec56520d00bd567aaab11b707f1bf7ba8 /t/t7810-grep.sh
parentcca2c172e0c37eff8e743b63016b6bc604b38a7d (diff)
downloadgit-dd0a21ede0998ec790c37865c7dc119814ac7745.zip
git-dd0a21ede0998ec790c37865c7dc119814ac7745.tar.gz
git-dd0a21ede0998ec790c37865c7dc119814ac7745.tar.bz2
git-grep: update tests now regexp type is "last one wins"
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t7810-grep.sh')
-rwxr-xr-xt/t7810-grep.sh16
1 files changed, 0 insertions, 16 deletions
diff --git a/t/t7810-grep.sh b/t/t7810-grep.sh
index 2a31eca..e845218 100755
--- a/t/t7810-grep.sh
+++ b/t/t7810-grep.sh
@@ -637,20 +637,4 @@ test_expect_success LIBPCRE 'grep -P -w pattern' '
test_cmp expected actual
'
-test_expect_success LIBPCRE 'grep -P -F returns error' '
- test_expect_code 128 git grep -P -F main
-'
-
-test_expect_success LIBPCRE 'grep -P -E returns error' '
- test_expect_code 128 git grep -P -E main
-'
-
-test_expect_failure LIBPCRE 'grep -P -G returns error' '
- test_expect_code 128 git grep -P -G main
-'
-
-test_expect_failure LIBPCRE 'grep -P -E -G returns error' '
- test_expect_code 128 git grep -P -E -G main
-'
-
test_done