[pypy-svn] r10112 - pypy/dist/lib-python-2.3.4/test

tismer at codespeak.net tismer at codespeak.net
Wed Mar 23 03:48:45 CET 2005


Author: tismer
Date: Wed Mar 23 03:48:45 2005
New Revision: 10112

Modified:
   pypy/dist/lib-python-2.3.4/test/conftest.py
Log:
binascii works, although slow

Modified: pypy/dist/lib-python-2.3.4/test/conftest.py
==============================================================================
--- pypy/dist/lib-python-2.3.4/test/conftest.py	(original)
+++ pypy/dist/lib-python-2.3.4/test/conftest.py	Wed Mar 23 03:48:45 2005
@@ -37,6 +37,7 @@
 'test_commands.py',
 'test_compare.py',
 'test_compile.py',
+'test_datetime.py', # it takes loong time
 'test_dis.py',
 'test_hash.py',
 'test_heapq.py',
@@ -123,7 +124,8 @@
         assert classlist, ("found %s.test_main() but it returned no " 
                            "test classes" % mod.__name__) 
     else: 
-        # we try to find out fitting tests ourselves 
+        # we try to find out fitting tests ourselves
+        raise Exception, mod.__dict__.items()
         for clsname, cls in mod.__dict__.items(): 
             if hasattr(cls, '__bases__') and \
                issubclass(cls, testcaseclass): 



More information about the Pypy-commit mailing list