summaryrefslogtreecommitdiff
path: root/debian/patches/skip-test_multiprocessing
diff options
context:
space:
mode:
Diffstat (limited to 'debian/patches/skip-test_multiprocessing')
-rw-r--r--debian/patches/skip-test_multiprocessing26
1 files changed, 26 insertions, 0 deletions
diff --git a/debian/patches/skip-test_multiprocessing b/debian/patches/skip-test_multiprocessing
new file mode 100644
index 0000000..da62a77
--- /dev/null
+++ b/debian/patches/skip-test_multiprocessing
@@ -0,0 +1,26 @@
+From: Stefano Rivera <stefanor@debian.org>
+Date: Sat, 7 Oct 2017 09:38:57 +0200
+Subject: Disable test_multiprocessing
+
+It leaves stray processes.
+
+Forwarded: not-needed
+Last-Updated: 2015-02-11
+---
+ lib-python/2.7/test/test_multiprocessing.py | 3 +++
+ 1 file changed, 3 insertions(+)
+
+diff --git a/lib-python/2.7/test/test_multiprocessing.py b/lib-python/2.7/test/test_multiprocessing.py
+index ba9caec..cf05b6f 100644
+--- 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'):