From: Junio C Hamano Date: Mon, 16 May 2011 07:10:14 +0000 (-0700) Subject: git-grep: update tests now regexp type is "last one wins" X-Git-Tag: v1.7.6-rc0~18^2~3 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=dd0a21ede0998ec790c37865c7dc119814ac7745;p=git.git git-grep: update tests now regexp type is "last one wins" Signed-off-by: Junio C Hamano --- diff --git a/t/t7810-grep.sh b/t/t7810-grep.sh index 2a31eca5f..e845218f6 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