summaryrefslogtreecommitdiff
path: root/testdata/testoutput13
diff options
context:
space:
mode:
authorph10 <ph10@6239d852-aaf2-0410-a92c-79f79f948069>2014-08-05 16:51:32 +0000
committerph10 <ph10@6239d852-aaf2-0410-a92c-79f79f948069>2014-08-05 16:51:32 +0000
commitf4420ec8a64f207f9cfda81cf4331412e339d04b (patch)
treec793dc77410487e13f1ee0aa56c84b9dfbe199ea /testdata/testoutput13
parent8638e05d8fc1616e33225acf157a2e1bbb09e973 (diff)
downloadpcre2-f4420ec8a64f207f9cfda81cf4331412e339d04b.tar.gz
All tests except JIT and save/reload are implemented.
git-svn-id: svn://vcs.exim.org/pcre2/code/trunk@37 6239d852-aaf2-0410-a92c-79f79f948069
Diffstat (limited to 'testdata/testoutput13')
-rw-r--r--testdata/testoutput1327
1 files changed, 27 insertions, 0 deletions
diff --git a/testdata/testoutput13 b/testdata/testoutput13
new file mode 100644
index 0000000..f737ebe
--- /dev/null
+++ b/testdata/testoutput13
@@ -0,0 +1,27 @@
+# These DFA tests are for the handling of characters greater than 255 in
+# 16-bit or 32-bit, non-UTF mode.
+
+#forbid_utf
+#subject dfa
+
+/^\x{ffff}+/i
+ \x{ffff}
+ 0: \x{ffff}
+
+/^\x{ffff}?/i
+ \x{ffff}
+ 0: \x{ffff}
+
+/^\x{ffff}*/i
+ \x{ffff}
+ 0: \x{ffff}
+
+/^\x{ffff}{3}/i
+ \x{ffff}\x{ffff}\x{ffff}
+ 0: \x{ffff}\x{ffff}\x{ffff}
+
+/^\x{ffff}{0,3}/i
+ \x{ffff}
+ 0: \x{ffff}
+
+# End of testinput13