[Pcre-svn] [559] code/trunk: Tidy up test comments, now tha…

トップ ページ
このメッセージを削除
著者: Subversion repository
日付:  
To: pcre-svn
題目: [Pcre-svn] [559] code/trunk: Tidy up test comments, now that Perl >= 5. 10 is generally around.
Revision: 559
          http://vcs.pcre.org/viewvc?view=rev&revision=559
Author:   ph10
Date:     2010-10-27 10:45:20 +0100 (Wed, 27 Oct 2010)


Log Message:
-----------
Tidy up test comments, now that Perl >= 5.10 is generally around.

Modified Paths:
--------------
    code/trunk/RunTest
    code/trunk/testdata/testinput11
    code/trunk/testdata/testinput2
    code/trunk/testdata/testinput6
    code/trunk/testdata/testoutput11
    code/trunk/testdata/testoutput2
    code/trunk/testdata/testoutput6


Modified: code/trunk/RunTest
===================================================================
--- code/trunk/RunTest    2010-10-26 15:26:45 UTC (rev 558)
+++ code/trunk/RunTest    2010-10-27 09:45:20 UTC (rev 559)
@@ -133,10 +133,10 @@
 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 @@
 # 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 @@
 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 @@
   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


Modified: code/trunk/testdata/testinput11
===================================================================
--- code/trunk/testdata/testinput11    2010-10-26 15:26:45 UTC (rev 558)
+++ code/trunk/testdata/testinput11    2010-10-27 09:45:20 UTC (rev 559)
@@ -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


Modified: code/trunk/testdata/testinput2
===================================================================
--- code/trunk/testdata/testinput2    2010-10-26 15:26:45 UTC (rev 558)
+++ code/trunk/testdata/testinput2    2010-10-27 09:45:20 UTC (rev 559)
@@ -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 @@
     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 @@


/^(?&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. --/  


Modified: code/trunk/testdata/testinput6
===================================================================
--- code/trunk/testdata/testinput6    2010-10-26 15:26:45 UTC (rev 558)
+++ code/trunk/testdata/testinput6    2010-10-27 09:45:20 UTC (rev 559)
@@ -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

Modified: code/trunk/testdata/testoutput11
===================================================================
--- code/trunk/testdata/testoutput11    2010-10-26 15:26:45 UTC (rev 558)
+++ code/trunk/testdata/testoutput11    2010-10-27 09:45:20 UTC (rev 559)
@@ -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


Modified: code/trunk/testdata/testoutput2
===================================================================
--- code/trunk/testdata/testoutput2    2010-10-26 15:26:45 UTC (rev 558)
+++ code/trunk/testdata/testoutput2    2010-10-27 09:45:20 UTC (rev 559)
@@ -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 @@
     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 @@
         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. --/  


Modified: code/trunk/testdata/testoutput6
===================================================================
--- code/trunk/testdata/testoutput6    2010-10-26 15:26:45 UTC (rev 558)
+++ code/trunk/testdata/testoutput6    2010-10-27 09:45:20 UTC (rev 559)
@@ -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