[pypy-svn] r15715 - in pypy/dist/lib-python: . modified-2.4.1/test

hpk at codespeak.net hpk at codespeak.net
Sat Aug 6 08:21:08 CEST 2005


Author: hpk
Date: Sat Aug  6 08:21:07 2005
New Revision: 15715

Added:
   pypy/dist/lib-python/modified-2.4.1/test/test_sys.py
      - copied, changed from r15713, pypy/dist/lib-python/2.4.1/test/test_sys.py
Modified:
   pypy/dist/lib-python/failure_list.txt
Log:
disable refcount test -> test_sys.py passes 


Modified: pypy/dist/lib-python/failure_list.txt
==============================================================================
--- pypy/dist/lib-python/failure_list.txt	(original)
+++ pypy/dist/lib-python/failure_list.txt	Sat Aug  6 08:21:07 2005
@@ -63,3 +63,6 @@
 test_descr
    FIXED? should be re-run.  Were fixed in modified-2.3.4, but then they
    were somehow lost when we switched to 2.4.1...
+
+test_sys (FIXED)
+    refcount test disabled (considered implementation detail from CPython)

Copied: pypy/dist/lib-python/modified-2.4.1/test/test_sys.py (from r15713, pypy/dist/lib-python/2.4.1/test/test_sys.py)
==============================================================================
--- pypy/dist/lib-python/2.4.1/test/test_sys.py	(original)
+++ pypy/dist/lib-python/modified-2.4.1/test/test_sys.py	Sat Aug  6 08:21:07 2005
@@ -207,7 +207,7 @@
             self.assertEqual(sys.getdlopenflags(), oldflags+1)
             sys.setdlopenflags(oldflags)
 
-    def test_refcount(self):
+    def DONT_test_refcount(self):
         self.assertRaises(TypeError, sys.getrefcount)
         c = sys.getrefcount(None)
         n = None



More information about the Pypy-commit mailing list