summaryrefslogtreecommitdiff
path: root/testdata/testoutput18
diff options
context:
space:
mode:
authorph10 <ph10@6239d852-aaf2-0410-a92c-79f79f948069>2014-10-06 17:28:42 +0000
committerph10 <ph10@6239d852-aaf2-0410-a92c-79f79f948069>2014-10-06 17:28:42 +0000
commit98a04818c6e15a1eab45c5224e6db3429496536e (patch)
tree35d28ed086837c67022617b1e58b3ed3b301d6c8 /testdata/testoutput18
parentef48210c5e60226937e07a00915f72f45cd9bacb (diff)
downloadpcre2-98a04818c6e15a1eab45c5224e6db3429496536e.tar.gz
Work on the tests for JIT.
git-svn-id: svn://vcs.exim.org/pcre2/code/trunk@97 6239d852-aaf2-0410-a92c-79f79f948069
Diffstat (limited to 'testdata/testoutput18')
-rw-r--r--testdata/testoutput1820
1 files changed, 20 insertions, 0 deletions
diff --git a/testdata/testoutput18 b/testdata/testoutput18
new file mode 100644
index 0000000..954b4b5
--- /dev/null
+++ b/testdata/testoutput18
@@ -0,0 +1,20 @@
+# This set of tests is run only with the 8-bit library. It tests the POSIX
+# interface with UTF/UCP support, which is supported only with the 8-bit
+# library. This test should not be run with JIT (which is not available for the
+# POSIX interface).
+
+#pattern posix
+
+/a\x{1234}b/utf
+ a\x{1234}b
+ 0: a\x{1234}b
+
+/\w/
+ +++\x{c2}
+No match: POSIX code 17: match failed
+
+/\w/ucp
+ +++\x{c2}
+ 0: \xc2
+
+# End of testdata/testinput17