File: skip-test_multiprocessing

package info (click to toggle)
pypy 5.6.0%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 97,040 kB
  • ctags: 185,069
  • sloc: python: 1,147,862; ansic: 49,642; cpp: 5,245; asm: 5,169; makefile: 529; sh: 481; xml: 232; lisp: 45
file content (17 lines) | stat: -rw-r--r-- 584 bytes parent folder | download
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'):