aboutsummaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2012-09-11 11:36:25 -0700
committerJunio C Hamano <gitster@pobox.com>2012-09-11 11:36:25 -0700
commitefe0a206a24179bf085463ea88f8c95ebc7c4768 (patch)
treeb757b33c8b07491a6076d208b8bed851e372cf7f /t
parent871313c35851e85a58c4012c02a806890c671813 (diff)
parentc91841594c2f08bec0c8b2d46da27add18fb4854 (diff)
downloadgit-efe0a206a24179bf085463ea88f8c95ebc7c4768.tar.gz
git-efe0a206a24179bf085463ea88f8c95ebc7c4768.tar.xz
Merge branch 'rj/test-regex'
Git ships with a fall-back regexp implementation for platforms with buggy regexp library; give people a tool to see if they should be using it on their platform. * rj/test-regex: test-regex: Add a test to check for a bug in the regex routines
Diffstat (limited to 't')
-rwxr-xr-xt/t0070-fundamental.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/t/t0070-fundamental.sh b/t/t0070-fundamental.sh
index 9bee8bfd2..da2c504e5 100755
--- a/t/t0070-fundamental.sh
+++ b/t/t0070-fundamental.sh
@@ -25,4 +25,9 @@ test_expect_success POSIXPERM 'mktemp to unwritable directory prints filename' '
grep "cannotwrite/test" err
'
+test_expect_success 'check for a bug in the regex routines' '
+ # if this test fails, re-build git with NO_REGEX=1
+ test-regex
+'
+
test_done