Skip to content

Commit bff4206

Browse files
drafnelgitster
authored andcommitted
t/t4018: test whether the word_regex patterns compile
Previously (e3bf5e4), 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 <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 042cca3 commit bff4206

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

t/t4018-diff-funcname.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,11 @@ do
4040
! ( git diff --no-index Beer.java Beer-correct.java 2>&1 |
4141
grep "fatal" > /dev/null )
4242
'
43+
test_expect_success "builtin $p wordRegex pattern compiles" '
44+
! ( git diff --no-index --word-diff \
45+
Beer.java Beer-correct.java 2>&1 |
46+
grep "fatal" > /dev/null )
47+
'
4348
done
4449

4550
test_expect_success 'default behaviour' '

0 commit comments

Comments
 (0)