1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
Description: Disable test_multiprocessing - it leaves stray processes
Author: Stefano Rivera <stefanor@debian.org>
Forwarded: not-needed
Last-Updated: 2015-02-11
--- a/lib-python/2.7/test/test_multiprocessing.py
+++ b/lib-python/2.7/test/test_multiprocessing.py
@@ -2,6 +2,9 @@
# Unit tests for the multiprocessing package
#
+import unittest
+raise unittest.SkipTest('This test leaves stray processes on buildds. '
+ 'Disabled for now')
## FIXME: remove when https://bugs.pypy.org/issue1644 is resolved
import sys
if sys.platform.startswith('freebsd'):
|