summaryrefslogtreecommitdiff
path: root/t/README
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2017-12-13 13:28:54 -0800
committerLibravatar Junio C Hamano <gitster@pobox.com>2017-12-13 13:28:54 -0800
commitb3f04e5b4c7e04d70e4cef74b4848dd198653cbb (patch)
tree651a7cca05c68f898937bdd017988d91ab4aa75a /t/README
parentMerge branch 'ra/decorate-limit-refs' (diff)
parentgrep: fix segfault under -P + PCRE2 <=10.30 + (*NO_JIT) (diff)
downloadtgif-b3f04e5b4c7e04d70e4cef74b4848dd198653cbb.tar.xz
Merge branch 'ab/pcre2-grep'
"git grep" compiled with libpcre2 sometimes triggered a segfault, which is being fixed. * ab/pcre2-grep: grep: fix segfault under -P + PCRE2 <=10.30 + (*NO_JIT) test-lib: add LIBPCRE1 & LIBPCRE2 prerequisites
Diffstat (limited to 't/README')
-rw-r--r--t/README12
1 files changed, 12 insertions, 0 deletions
diff --git a/t/README b/t/README
index 4b079e4494..599cd9808c 100644
--- a/t/README
+++ b/t/README
@@ -808,6 +808,18 @@ use these, and "test_set_prereq" for how to define your own.
Git was compiled with support for PCRE. Wrap any tests
that use git-grep --perl-regexp or git-grep -P in these.
+ - LIBPCRE1
+
+ Git was compiled with PCRE v1 support via
+ USE_LIBPCRE1=YesPlease. Wrap any PCRE using tests that for some
+ reason need v1 of the PCRE library instead of v2 in these.
+
+ - LIBPCRE2
+
+ Git was compiled with PCRE v2 support via
+ USE_LIBPCRE2=YesPlease. Wrap any PCRE using tests that for some
+ reason need v2 of the PCRE library instead of v1 in these.
+
- CASE_INSENSITIVE_FS
Test is run on a case insensitive file system.