[pypy-commit] pypy default: revert 575680bf889a, because it made the nightly tests hanging, at least on linux32 and linux64

antocuni noreply at buildbot.pypy.org
Sat May 14 14:13:39 CEST 2011


Author: Antonio Cuni <anto.cuni at gmail.com>
Branch: 
Changeset: r44156:4d2551637b3f
Date: 2011-05-14 14:22 +0200
http://bitbucket.org/pypy/pypy/changeset/4d2551637b3f/

Log:	revert 575680bf889a, because it made the nightly tests hanging, at
	least on linux32 and linux64

diff --git a/lib-python/modified-2.7/test/test_multiprocessing.py b/lib-python/modified-2.7/test/test_multiprocessing.py
--- a/lib-python/modified-2.7/test/test_multiprocessing.py
+++ b/lib-python/modified-2.7/test/test_multiprocessing.py
@@ -510,6 +510,7 @@
 
         p.join()
 
+    @unittest.skipIf(os.name == 'posix', "PYPY: FIXME")
     def test_qsize(self):
         q = self.Queue()
         try:
@@ -1090,6 +1091,7 @@
 class _TestPoolWorkerLifetime(BaseTestCase):
 
     ALLOWED_TYPES = ('processes', )
+    @unittest.skipIf(os.name == 'posix', "PYPY: FIXME")
     def test_pool_worker_lifetime(self):
         p = multiprocessing.Pool(3, maxtasksperchild=10)
         self.assertEqual(3, len(p._pool))
@@ -1278,6 +1280,7 @@
         queue = manager.get_queue()
         queue.put('hello world')
 
+    @unittest.skipIf(os.name == 'posix', "PYPY: FIXME")
     def test_rapid_restart(self):
         authkey = os.urandom(32)
         manager = QueueManager(
@@ -1570,6 +1573,7 @@
 
     ALLOWED_TYPES = ('processes',)
 
+    @unittest.skipIf(os.name == 'posix', "PYPY: FIXME")
     def test_heap(self):
         iterations = 5000
         maxblocks = 50


More information about the pypy-commit mailing list