[pypy-svn] r11874 - pypy/dist/lib-python

hpk at codespeak.net hpk at codespeak.net
Tue May 3 17:12:03 CEST 2005


Author: hpk
Date: Tue May  3 17:12:02 2005
New Revision: 11874

Modified:
   pypy/dist/lib-python/conftest.py
Log:
added some analysis about why 

    test_global.py 
    test_optparse.py 

are failing. 



Modified: pypy/dist/lib-python/conftest.py
==============================================================================
--- pypy/dist/lib-python/conftest.py	(original)
+++ pypy/dist/lib-python/conftest.py	Tue May  3 17:12:02 2005
@@ -468,6 +468,10 @@
     RegrTest('test_gl.py', enabled=False, dumbtest=1),
     RegrTest('test_glob.py', enabled=True, core=True),
     RegrTest('test_global.py', enabled=False, core=True),
+        # this fails because it relies on the warnings module 
+        # turning a warning into an exception, but PyPy's
+        # interplevel doesn't call into the app-level warnings
+        # module 
     RegrTest('test_grammar.py', enabled=False, core=True),
     RegrTest('test_grp.py', enabled=False),
         #rev 10840: ImportError: grp
@@ -532,6 +536,10 @@
     RegrTest('test_operations.py', enabled=False, core=True),
     RegrTest('test_operator.py', enabled=True, core=True),
     RegrTest('test_optparse.py', enabled=False, core="maybe"),
+        # this test fails because it expects that PyPy's builtin
+        # functions act as if they are staticmethods that can be put 
+        # on classes and don't get bound etc.pp. 
+
     RegrTest('test_os.py', enabled=True, core=True),
     RegrTest('test_ossaudiodev.py', enabled=False),
     RegrTest('test_parser.py', enabled=False),



More information about the Pypy-commit mailing list