summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: cca2c17)
raw | patch | inline | side by side (parent: cca2c17)
author | Junio C Hamano <gitster@pobox.com> | |
Mon, 16 May 2011 07:10:14 +0000 (00:10 -0700) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Mon, 16 May 2011 07:10:14 +0000 (00:10 -0700) |
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t7810-grep.sh | patch | blob | history |
diff --git a/t/t7810-grep.sh b/t/t7810-grep.sh
index 2a31eca5f257e674390bee1a93eb5a867262eff5..e845218f67a4d14160900884bb0b0d9c8785ba97 100755 (executable)
--- a/t/t7810-grep.sh
+++ b/t/t7810-grep.sh
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