[pypy-commit] pypy py3k: Fix two CPython specific tests

amauryfa noreply at buildbot.pypy.org
Mon Oct 22 00:34:12 CEST 2012


Author: Amaury Forgeot d'Arc <amauryfa at gmail.com>
Branch: py3k
Changeset: r58340:7ad662acdaac
Date: 2012-10-21 09:41 +0200
http://bitbucket.org/pypy/pypy/changeset/7ad662acdaac/

Log:	Fix two CPython specific tests

diff --git a/lib-python/3.2/test/test_weakref.py b/lib-python/3.2/test/test_weakref.py
--- a/lib-python/3.2/test/test_weakref.py
+++ b/lib-python/3.2/test/test_weakref.py
@@ -640,9 +640,11 @@
         gc.collect()
         self.assertEqual(alist, [])
 
+    @support.impl_detail(pypy=False)
     def test_gc_during_ref_creation(self):
         self.check_gc_during_creation(weakref.ref)
 
+    @support.impl_detail(pypy=False)
     def test_gc_during_proxy_creation(self):
         self.check_gc_during_creation(weakref.proxy)
 


More information about the pypy-commit mailing list