summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2010-10-27 09:45:20 +0000
committerph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2010-10-27 09:45:20 +0000
commitdc8c42fc45547f935b7d0eaa0c06e643fb949a56 (patch)
treeeb53cec228f45c2bd3c2bb35159c29fe2b618249
parentb73b31cd6024879a40e33a40edd121b186eb7f9d (diff)
downloadpcre-dc8c42fc45547f935b7d0eaa0c06e643fb949a56.tar.gz
Tidy up test comments, now that Perl >= 5.10 is generally around.
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@559 2f5784b3-3f2a-0410-8824-cb99058d5e15
-rwxr-xr-xRunTest12
-rw-r--r--testdata/testinput112
-rw-r--r--testdata/testinput210
-rw-r--r--testdata/testinput62
-rw-r--r--testdata/testoutput112
-rw-r--r--testdata/testoutput210
-rw-r--r--testdata/testoutput62
7 files changed, 20 insertions, 20 deletions
diff --git a/RunTest b/RunTest
index 7091fab..1fd43ff 100755
--- a/RunTest
+++ b/RunTest
@@ -133,10 +133,10 @@ echo ""
echo PCRE C library tests
./pcretest /dev/null
-# Primary test, compatible with Perl 5.8, 5.10, 5.11
+# Primary test, compatible with all versions of Perl >= 5.8
if [ $do1 = yes ] ; then
- echo "Test 1: main functionality (Perl 5.8, 5.10, 5.11 compatible)"
+ echo "Test 1: main functionality (Compatible with Perl >= 5.8)"
$valgrind ./pcretest -q $testdata/testinput1 testtry
if [ $? = 0 ] ; then
$cf $testdata/testoutput1 testtry
@@ -215,7 +215,7 @@ fi
# Additional tests for UTF8 support
if [ $do4 = yes ] ; then
- echo "Test 4: UTF-8 support (Perl 5.8, 5.10, 5.11 compatible)"
+ echo "Test 4: UTF-8 support (Compatible with Perl >= 5.8)"
$valgrind ./pcretest -q $testdata/testinput4 testtry
if [ $? = 0 ] ; then
$cf $testdata/testoutput4 testtry
@@ -237,7 +237,7 @@ if [ $do5 = yes ] ; then
fi
if [ $do6 = yes ] ; then
- echo "Test 6: Unicode property support (Perl 5.10, 5.11 compatible)"
+ echo "Test 6: Unicode property support (Compatible with Perl >= 5.10)"
$valgrind ./pcretest -q $testdata/testinput6 testtry
if [ $? = 0 ] ; then
$cf $testdata/testoutput6 testtry
@@ -299,10 +299,10 @@ if [ $do10 = yes ] ; then
echo "OK"
fi
-# Test of Perl 5.10, 5.11 features
+# Test of Perl >= 5.10 features
if [ $do11 = yes ] ; then
- echo "Test 11: Perl 5.10, 5.11 features"
+ echo "Test 11: Features from Perl >= 5.10"
$valgrind ./pcretest -q $testdata/testinput11 testtry
if [ $? = 0 ] ; then
$cf $testdata/testoutput11 testtry
diff --git a/testdata/testinput11 b/testdata/testinput11
index 3b6ef09..f115a64 100644
--- a/testdata/testinput11
+++ b/testdata/testinput11
@@ -1,4 +1,4 @@
-/-- These tests are for the Perl 5.10 features that PCRE supports. --/
+/-- These tests are for the Perl >= 5.10 features that PCRE supports. --/
/\H\h\V\v/
X X\x0a
diff --git a/testdata/testinput2 b/testdata/testinput2
index 959ce0b..a16b4d6 100644
--- a/testdata/testinput2
+++ b/testdata/testinput2
@@ -5,7 +5,7 @@
either because PCRE can't be compatible, or there is a possible Perl
bug. --/
-/-- Originally, the Perl 5.10 and 5.11 things were in here too, but now I have
+/-- Originally, the Perl >= 5.10 things were in here too, but now I have
separated many (most?) of them out into test 11. However, there may still
be some that were overlooked. --/
@@ -3170,9 +3170,9 @@ a random value. /Ix
xxxxabcde\P
xxxxabcde\P\P
-/-- This is not in the Perl 5.10 test because Perl seems currently to be broken
- and not behaving as specified in that it *does* bumpalong after hitting
- (*COMMIT). --/
+/-- This is not in the Perl >= 5.10 test because Perl seems currently to be
+ broken and not behaving as specified in that it *does* bumpalong after
+ hitting (*COMMIT). --/
/(?1)(A(*COMMIT)|B)D/
ABD
@@ -3216,7 +3216,7 @@ a random value. /Ix
/^(?&t)*(?(DEFINE)(?<t>.))$/BZ
-/ -- The first four of these are not in the Perl 5.10 test because Perl
+/ -- The first four of these are not in the Perl >= 5.10 test because Perl
documents that the use of \K in assertions is "not well defined". The
last is here because Perl gives the match as "b" rather than "ab". I
believe this to be a Perl bug. --/
diff --git a/testdata/testinput6 b/testdata/testinput6
index e923e00..503a5bc 100644
--- a/testdata/testinput6
+++ b/testdata/testinput6
@@ -1,5 +1,5 @@
/-- This set of tests is for Unicode property support. It is compatible with
- Perl 5.10, but not 5.8 because it tests some extra properties that are
+ Perl >= 5.10, but not 5.8 because it tests some extra properties that are
not in the earlier release. --/
/^\pC\pL\pM\pN\pP\pS\pZ</8
diff --git a/testdata/testoutput11 b/testdata/testoutput11
index 1a17105..ee178c1 100644
--- a/testdata/testoutput11
+++ b/testdata/testoutput11
@@ -1,4 +1,4 @@
-/-- These tests are for the Perl 5.10 features that PCRE supports. --/
+/-- These tests are for the Perl >= 5.10 features that PCRE supports. --/
/\H\h\V\v/
X X\x0a
diff --git a/testdata/testoutput2 b/testdata/testoutput2
index 2f26fe6..6545cfd 100644
--- a/testdata/testoutput2
+++ b/testdata/testoutput2
@@ -5,7 +5,7 @@
either because PCRE can't be compatible, or there is a possible Perl
bug. --/
-/-- Originally, the Perl 5.10 and 5.11 things were in here too, but now I have
+/-- Originally, the Perl >= 5.10 things were in here too, but now I have
separated many (most?) of them out into test 11. However, there may still
be some that were overlooked. --/
@@ -10459,9 +10459,9 @@ Partial match: abca
xxxxabcde\P\P
Partial match: abcde
-/-- This is not in the Perl 5.10 test because Perl seems currently to be broken
- and not behaving as specified in that it *does* bumpalong after hitting
- (*COMMIT). --/
+/-- This is not in the Perl >= 5.10 test because Perl seems currently to be
+ broken and not behaving as specified in that it *does* bumpalong after
+ hitting (*COMMIT). --/
/(?1)(A(*COMMIT)|B)D/
ABD
@@ -10664,7 +10664,7 @@ No match
End
------------------------------------------------------------------
-/ -- The first four of these are not in the Perl 5.10 test because Perl
+/ -- The first four of these are not in the Perl >= 5.10 test because Perl
documents that the use of \K in assertions is "not well defined". The
last is here because Perl gives the match as "b" rather than "ab". I
believe this to be a Perl bug. --/
diff --git a/testdata/testoutput6 b/testdata/testoutput6
index e000083..6a9ec83 100644
--- a/testdata/testoutput6
+++ b/testdata/testoutput6
@@ -1,5 +1,5 @@
/-- This set of tests is for Unicode property support. It is compatible with
- Perl 5.10, but not 5.8 because it tests some extra properties that are
+ Perl >= 5.10, but not 5.8 because it tests some extra properties that are
not in the earlier release. --/
/^\pC\pL\pM\pN\pP\pS\pZ</8