[pypy-commit] pypy stdlib-2.7.4: skip test for ref counting bug

bdkearns noreply at buildbot.pypy.org
Wed Apr 10 22:02:04 CEST 2013


Author: Brian Kearns <bdkearns at gmail.com>
Branch: stdlib-2.7.4
Changeset: r63210:dd627c7dbe3a
Date: 2013-04-10 16:01 -0400
http://bitbucket.org/pypy/pypy/changeset/dd627c7dbe3a/

Log:	skip test for ref counting bug

diff --git a/lib-python/2.7/test/test_functools.py b/lib-python/2.7/test/test_functools.py
--- a/lib-python/2.7/test/test_functools.py
+++ b/lib-python/2.7/test/test_functools.py
@@ -155,6 +155,7 @@
         self.assertEqual(signature(f), signature(f_copy))
 
     # Issue 6083: Reference counting bug
+    @unittest.skipUnless(test_support.check_impl_detail(), "ref counting")
     def test_setstate_refcount(self):
         class BadSequence:
             def __len__(self):


More information about the pypy-commit mailing list