[pypy-commit] pypy py3k: another windows deadlock, skip for now

pjenvey noreply at buildbot.pypy.org
Thu Apr 25 21:21:47 CEST 2013


Author: Philip Jenvey <pjenvey at underboss.org>
Branch: py3k
Changeset: r63616:e20e8b97f1af
Date: 2013-04-25 12:19 -0700
http://bitbucket.org/pypy/pypy/changeset/e20e8b97f1af/

Log:	another windows deadlock, skip for now

diff --git a/lib-python/3/test/json_tests/test_recursion.py b/lib-python/3/test/json_tests/test_recursion.py
--- a/lib-python/3/test/json_tests/test_recursion.py
+++ b/lib-python/3/test/json_tests/test_recursion.py
@@ -1,3 +1,6 @@
+import sys
+import unittest
+from test import support
 from test.json_tests import PyTest, CTest
 
 
@@ -75,6 +78,9 @@
         with self.assertRaises(RuntimeError):
             self.loads('[' * 100000 + '1' + ']' * 100000)
 
+    @unittest.skipIf(support.check_impl_detail(pypy=True) and
+                     sys.platform == 'win32',
+                     "XXX: https://bugs.pypy.org/issue1461")
     def test_highly_nested_objects_encoding(self):
         # See #12051
         l, d = [], {}


More information about the pypy-commit mailing list