Revision: 540
http://www.exim.org/viewvc/pcre2?view=rev&revision=540
Author: ph10
Date: 2016-07-02 16:52:30 +0100 (Sat, 02 Jul 2016)
Log Message:
-----------
Additional test for recent JIT bugfix.
Modified Paths:
--------------
code/trunk/testdata/testinput17
code/trunk/testdata/testoutput17
Modified: code/trunk/testdata/testinput17
===================================================================
--- code/trunk/testdata/testinput17 2016-07-01 08:56:59 UTC (rev 539)
+++ code/trunk/testdata/testinput17 2016-07-02 15:52:30 UTC (rev 540)
@@ -288,5 +288,13 @@
/abc/jitfast
abc
abc\=no_jit
+
+# ----
+/[aC]/mg,firstline
+match\nmatch
+
+/[aCz]/mg,firstline
+match\nmatch
+
# End of testinput17
Modified: code/trunk/testdata/testoutput17
===================================================================
--- code/trunk/testdata/testoutput17 2016-07-01 08:56:59 UTC (rev 539)
+++ code/trunk/testdata/testoutput17 2016-07-02 15:52:30 UTC (rev 540)
@@ -530,5 +530,15 @@
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