From: Brandon Casey Date: Thu, 9 Sep 2010 19:02:47 +0000 (-0500) Subject: t/t4018: test whether the word_regex patterns compile X-Git-Tag: v1.7.3-rc1~6 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=bff42061214e17f342efc909c73f29bf66df51e9;p=git.git t/t4018: test whether the word_regex patterns compile Previously (e3bf5e43), a test was added to test whether the builtin xfuncname regular expressions could be compiled without error by regcomp. Let's do the same for the word_regex patterns. This should help catch any cross-platform incompatibilities that exist between the pattern creator's system and the various platforms that the test suite is commonly run on. Signed-off-by: Brandon Casey Signed-off-by: Junio C Hamano --- diff --git a/t/t4018-diff-funcname.sh b/t/t4018-diff-funcname.sh index 61de8a271..620cd0279 100755 --- a/t/t4018-diff-funcname.sh +++ b/t/t4018-diff-funcname.sh @@ -40,6 +40,11 @@ do ! ( git diff --no-index Beer.java Beer-correct.java 2>&1 | grep "fatal" > /dev/null ) ' + test_expect_success "builtin $p wordRegex pattern compiles" ' + ! ( git diff --no-index --word-diff \ + Beer.java Beer-correct.java 2>&1 | + grep "fatal" > /dev/null ) + ' done test_expect_success 'default behaviour' '