[Pcre-svn] [554] code/trunk/testdata: Add test for a (*SKIP)…

Página Inicial
Delete this message
Autor: Subversion repository
Data:  
Para: pcre-svn
Assunto: [Pcre-svn] [554] code/trunk/testdata: Add test for a (*SKIP) bug that was fixed by other changes.
Revision: 554
          http://vcs.pcre.org/viewvc?view=rev&revision=554
Author:   ph10
Date:     2010-10-25 16:01:05 +0100 (Mon, 25 Oct 2010)


Log Message:
-----------
Add test for a (*SKIP) bug that was fixed by other changes.

Modified Paths:
--------------
    code/trunk/testdata/testinput11
    code/trunk/testdata/testoutput11


Modified: code/trunk/testdata/testinput11
===================================================================
--- code/trunk/testdata/testinput11    2010-10-22 15:57:50 UTC (rev 553)
+++ code/trunk/testdata/testinput11    2010-10-25 15:01:05 UTC (rev 554)
@@ -494,4 +494,14 @@
 /^((yes|no)(*THEN)(*F))?/
   yes


+/b?(*SKIP)c/
+    bc
+    abc
+   
+/(*SKIP)bc/
+    a
+
+/(*SKIP)b/
+    a 
+
 /-- End of testinput11 --/


Modified: code/trunk/testdata/testoutput11
===================================================================
--- code/trunk/testdata/testoutput11    2010-10-22 15:57:50 UTC (rev 553)
+++ code/trunk/testdata/testoutput11    2010-10-25 15:01:05 UTC (rev 554)
@@ -956,4 +956,18 @@
   yes
  0: 


+/b?(*SKIP)c/
+    bc
+ 0: bc
+    abc
+ 0: bc
+   
+/(*SKIP)bc/
+    a
+No match
+
+/(*SKIP)b/
+    a 
+No match
+
 /-- End of testinput11 --/