Author: Philip Jenvey <[email protected]>
Branch: py3k
Changeset: r63558:2dc244b54a19
Date: 2013-04-22 15:03 -0700
http://bitbucket.org/pypy/pypy/changeset/2dc244b54a19/
Log: skip these for now, they deadlock windows
diff --git a/lib-python/3/test/test_class.py b/lib-python/3/test/test_class.py
--- a/lib-python/3/test/test_class.py
+++ b/lib-python/3/test/test_class.py
@@ -1,5 +1,6 @@
"Test the functionality of Python classes implementing operators."
+import sys
import unittest
from test import support
@@ -467,6 +468,9 @@
self.assertRaises(TypeError, hash, C2())
+ @unittest.skipIf(support.check_impl_detail(pypy=True) and
+ sys.platform == 'win32',
+ "XXX: https://bugs.pypy.org/issue1461")
def testSFBug532646(self):
# Test for SF bug 532646
diff --git a/lib-python/3/test/test_descr.py b/lib-python/3/test/test_descr.py
--- a/lib-python/3/test/test_descr.py
+++ b/lib-python/3/test/test_descr.py
@@ -3462,6 +3462,9 @@
list.__init__(a, sequence=[0, 1, 2])
self.assertEqual(a, [0, 1, 2])
+ @unittest.skipIf(support.check_impl_detail(pypy=True) and
+ sys.platform == 'win32',
+ "XXX: https://bugs.pypy.org/issue1461")
def test_recursive_call(self):
# Testing recursive __call__() by setting to instance of class...
class A(object):
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit