Update of /cvsroot/boost/boost/libs/xpressive/test
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv23603/libs/xpressive/test

Modified Files:
        regress.txt 
Log Message:
named captures for dynamic regexes, doxygen comments

Index: regress.txt
===================================================================
RCS file: /cvsroot/boost/boost/libs/xpressive/test/regress.txt,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- regress.txt 26 Apr 2007 16:38:01 -0000      1.7
+++ regress.txt 7 May 2007 04:41:25 -0000       1.8
@@ -1453,6 +1453,7 @@
 br0=aA
 [end]
 
+; Test for backreferences over 9
 [test172]
 str=hellohello
 pat=()()()()()()()()()()()(hello)\12
@@ -1471,6 +1472,27 @@
 br12=hello
 [end]
 
+; test for named captures
+[test173]
+str=hellohello
+pat=(?P<this>he(ll)o)(?P=this)
+br0=hellohello
+br1=hello
+br2=ll
+[end]
+
+; test for named captures
+[test174]
+str=hellohello
+pat=(?P<this>he(ll)o)(?P=this)
+flg=p
+sub=\u\g<this>, world
+res=Hello, world
+br0=hellohello
+br1=hello
+br2=ll
+[end]
+
 ; tests pilfered from Boost.Regex test_tricky_cases.cpp
 
 [tricky1]


-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Boost-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/boost-cvs

Reply via email to