summaryrefslogtreecommitdiff
path: root/testdata/testoutput10
diff options
context:
space:
mode:
authorph10 <ph10@6239d852-aaf2-0410-a92c-79f79f948069>2015-10-17 13:50:56 +0000
committerph10 <ph10@6239d852-aaf2-0410-a92c-79f79f948069>2015-10-17 13:50:56 +0000
commitdeee8d934595c4b856361955aaf4dd26995d203a (patch)
treee51b5816563a758d536c5c15961441724944dcb1 /testdata/testoutput10
parent91cb973c4537327c18217b50f20e82283affe976 (diff)
downloadpcre2-deee8d934595c4b856361955aaf4dd26995d203a.tar.gz
Implement --never-backslash-C
git-svn-id: svn://vcs.exim.org/pcre2/code/trunk@386 6239d852-aaf2-0410-a92c-79f79f948069
Diffstat (limited to 'testdata/testoutput10')
-rw-r--r--testdata/testoutput1083
1 files changed, 0 insertions, 83 deletions
diff --git a/testdata/testoutput10 b/testdata/testoutput10
index 291cc4e..65cd081 100644
--- a/testdata/testoutput10
+++ b/testdata/testoutput10
@@ -1,67 +1,6 @@
# This set of tests is for UTF-8 support and Unicode property support, with
# relevance only for the 8-bit library.
-/X(\C{3})/utf
- X\x{1234}
- 0: X\x{1234}
- 1: \x{1234}
-
-/X(\C{4})/utf
- X\x{1234}YZ
- 0: X\x{1234}Y
- 1: \x{1234}Y
-
-/X\C*/utf
- XYZabcdce
- 0: XYZabcdce
-
-/X\C*?/utf
- XYZabcde
- 0: X
-
-/X\C{3,5}/utf
- Xabcdefg
- 0: Xabcde
- X\x{1234}
- 0: X\x{1234}
- X\x{1234}YZ
- 0: X\x{1234}YZ
- X\x{1234}\x{512}
- 0: X\x{1234}\x{512}
- X\x{1234}\x{512}YZ
- 0: X\x{1234}\x{512}
-
-/X\C{3,5}?/utf
- Xabcdefg
- 0: Xabc
- X\x{1234}
- 0: X\x{1234}
- X\x{1234}YZ
- 0: X\x{1234}
- X\x{1234}\x{512}
- 0: X\x{1234}
-
-/a\Cb/utf
- aXb
- 0: aXb
- a\nb
- 0: a\x{0a}b
-
-/a\C\Cb/utf
- a\x{100}b
- 0: a\x{100}b
-
-/ab\Cde/utf
- abXde
- 0: abXde
-
-/a\C\Cb/utf
- a\x{100}b
- 0: a\x{100}b
-\= Expect no match
- a\x{12257}b
-No match
-
# The next 3 patterns have UTF-8 errors
/[Ã]/utf
@@ -511,28 +450,6 @@ First code unit = \xf0
Last code unit = \xab
Subject length lower bound = 1
-# This one is here not because it's different to Perl, but because the way
-# the captured single-byte is displayed. (In Perl it becomes a character, and you
-# can't tell the difference.)
-
-/X(\C)(.*)/utf
- X\x{1234}
- 0: X\x{1234}
- 1: \x{e1}
- 2: \x{88}\x{b4}
- X\nabc
- 0: X\x{0a}abc
- 1: \x{0a}
- 2: abc
-
-# This one is here because Perl gives out a grumbly error message (quite
-# correctly, but that messes up comparisons).
-
-/a\Cb/utf
-\= Expect no match
- a\x{100}b
-No match
-
/[^ab\xC0-\xF0]/IB,utf
------------------------------------------------------------------
Bra