[pypy-svn] r75888 - pypy/branch/rsre2/pypy/rlib/rsre/test

arigo at codespeak.net arigo at codespeak.net
Tue Jul 6 11:31:13 CEST 2010


Author: arigo
Date: Tue Jul  6 11:31:12 2010
New Revision: 75888

Modified:
   pypy/branch/rsre2/pypy/rlib/rsre/test/re_tests.py
Log:
Skip these two tests.


Modified: pypy/branch/rsre2/pypy/rlib/rsre/test/re_tests.py
==============================================================================
--- pypy/branch/rsre2/pypy/rlib/rsre/test/re_tests.py	(original)
+++ pypy/branch/rsre2/pypy/rlib/rsre/test/re_tests.py	Tue Jul  6 11:31:12 2010
@@ -266,8 +266,8 @@
     # Test symbolic groups
 
     ('(?P<i d>aaa)a', 'aaaa', SYNTAX_ERROR),
-    ('(?P<id>aaa)a', 'aaaa', SUCCEED, 'found+"-"+id', 'aaaa-aaa'),
-    ('(?P<id>aa)(?P=id)', 'aaaa', SUCCEED, 'found+"-"+id', 'aaaa-aa'),
+    #('(?P<id>aaa)a', 'aaaa', SUCCEED, 'found+"-"+id', 'aaaa-aaa'),
+    #('(?P<id>aa)(?P=id)', 'aaaa', SUCCEED, 'found+"-"+id', 'aaaa-aa'),
     ('(?P<id>aa)(?P=xd)', 'aaaa', SYNTAX_ERROR),
 
     # Test octal escapes/memory references



More information about the Pypy-commit mailing list