[pypy-commit] pypy default: deactivate test_multiprocessing until #1644 is resolved - buildslave hangs

oberstet noreply at buildbot.pypy.org
Tue Nov 19 09:56:33 CET 2013


Author: Tobias Oberstein <tobias.oberstein at tavendo.de>
Branch: 
Changeset: r68237:4cb276ba3e4a
Date: 2013-11-18 21:54 +0100
http://bitbucket.org/pypy/pypy/changeset/4cb276ba3e4a/

Log:	deactivate test_multiprocessing until #1644 is resolved - buildslave
	hangs

diff --git a/lib-python/2.7/test/test_multiprocessing.py b/lib-python/2.7/test/test_multiprocessing.py
--- a/lib-python/2.7/test/test_multiprocessing.py
+++ b/lib-python/2.7/test/test_multiprocessing.py
@@ -1,5 +1,10 @@
 #!/usr/bin/env python
 
+## FIXME: remove when https://bugs.pypy.org/issue1644 is resolved
+import sys
+if sys.platform.startswith('freebsd'):
+    raise Exception("This test hangs on FreeBSD. Test deactivated for now until https://bugs.pypy.org/issue1644 get resolved")
+
 #
 # Unit tests for the multiprocessing package
 #


More information about the pypy-commit mailing list