summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorph10 <ph10@6239d852-aaf2-0410-a92c-79f79f948069>2016-07-02 15:52:30 +0000
committerph10 <ph10@6239d852-aaf2-0410-a92c-79f79f948069>2016-07-02 15:52:30 +0000
commit7490ab47a6b597a4724b961a1987300809d0bef1 (patch)
tree9a8bc94f559acd2b457108f54afbcd829edd8acd
parent987102fcb0b726a1f29c9ed3e52c3839ebe372cd (diff)
downloadpcre2-7490ab47a6b597a4724b961a1987300809d0bef1.tar.gz
Additional test for recent JIT bugfix.
git-svn-id: svn://vcs.exim.org/pcre2/code/trunk@540 6239d852-aaf2-0410-a92c-79f79f948069
-rw-r--r--testdata/testinput178
-rw-r--r--testdata/testoutput1710
2 files changed, 18 insertions, 0 deletions
diff --git a/testdata/testinput17 b/testdata/testinput17
index f1bf25f..90c0a09 100644
--- a/testdata/testinput17
+++ b/testdata/testinput17
@@ -288,5 +288,13 @@
/abc/jitfast
abc
abc\=no_jit
+
+# ----
+
+/[aC]/mg,firstline
+match\nmatch
+
+/[aCz]/mg,firstline
+match\nmatch
# End of testinput17
diff --git a/testdata/testoutput17 b/testdata/testoutput17
index 36509c8..60fe20b 100644
--- a/testdata/testoutput17
+++ b/testdata/testoutput17
@@ -530,5 +530,15 @@ Failed: error -47: match limit exceeded
0: abc (JIT)
abc\=no_jit
0: abc (JIT)
+
+# ----
+
+/[aC]/mg,firstline
+match\nmatch
+ 0: a (JIT)
+
+/[aCz]/mg,firstline
+match\nmatch
+ 0: a (JIT)
# End of testinput17