summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2010-10-27 09:59:43 +0000
committerph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2010-10-27 09:59:43 +0000
commit3dae399f6999cce832976c85ae1de6188e9d2c58 (patch)
tree10c68d129779b1d92355b3e3a0512212018eaf31
parentdc8c42fc45547f935b7d0eaa0c06e643fb949a56 (diff)
downloadpcre-3dae399f6999cce832976c85ae1de6188e9d2c58.tar.gz
Further test tidies for Perl comparisons.
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@560 2f5784b3-3f2a-0410-8824-cb99058d5e15
-rw-r--r--testdata/testinput43
-rw-r--r--testdata/testinput57
-rw-r--r--testdata/testoutput46
-rw-r--r--testdata/testoutput59
4 files changed, 21 insertions, 4 deletions
diff --git a/testdata/testinput4 b/testdata/testinput4
index 12f4c7e..a629387 100644
--- a/testdata/testinput4
+++ b/testdata/testinput4
@@ -463,7 +463,8 @@
/a\Cb/8
aXb
a\nb
- *** Failers
+
+/a\C\Cb/8
a\x{100}b
/[z-\x{100}]/8i
diff --git a/testdata/testinput5 b/testdata/testinput5
index 32cfc65..b2b2ffc 100644
--- a/testdata/testinput5
+++ b/testdata/testinput5
@@ -66,6 +66,13 @@ can't tell the difference.) --/
/X(\C)(.*)/8
X\x{1234}
X\nabc
+
+/-- This one is here because Perl gives out a grumbly error message (quite
+correctly, but that messes up comparisons). --/
+
+/a\Cb/8
+ *** Failers
+ a\x{100}b
/^[ab]/8DZ
bar
diff --git a/testdata/testoutput4 b/testdata/testoutput4
index 128afe4..ad331c7 100644
--- a/testdata/testoutput4
+++ b/testdata/testoutput4
@@ -802,10 +802,10 @@ No match
0: aXb
a\nb
0: a\x{0a}b
- *** Failers
-No match
+
+/a\C\Cb/8
a\x{100}b
-No match
+ 0: a\x{100}b
/[z-\x{100}]/8i
z
diff --git a/testdata/testoutput5 b/testdata/testoutput5
index 8784ebe..d5bc270 100644
--- a/testdata/testoutput5
+++ b/testdata/testoutput5
@@ -293,6 +293,15 @@ can't tell the difference.) --/
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/8
+ *** Failers
+No match
+ a\x{100}b
+No match
/^[ab]/8DZ
------------------------------------------------------------------