summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_multiprocessing.py
diff options
context:
space:
mode:
authorRichard Oudkerk <shibturn@gmail.com>2012-08-14 10:41:32 (GMT)
committerRichard Oudkerk <shibturn@gmail.com>2012-08-14 10:41:32 (GMT)
commite88a2445bc31dce0caa0be9b543689a953c1f920 (patch)
treecdb9dc044ec4584b1610e6f03ce995ac4a9f5f75 /Lib/test/test_multiprocessing.py
parent296d1bea6aab9c5cb78ec4f90369352aba64d7c5 (diff)
downloadcpython-e88a2445bc31dce0caa0be9b543689a953c1f920.zip
cpython-e88a2445bc31dce0caa0be9b543689a953c1f920.tar.gz
cpython-e88a2445bc31dce0caa0be9b543689a953c1f920.tar.bz2
Issue #15646: Prevent equivalent of a fork bomb when using multiprocessing
on Windows without the "if __name__ == '__main__'" idiom.
Diffstat (limited to 'Lib/test/test_multiprocessing.py')
-rw-r--r--Lib/test/test_multiprocessing.py23
1 files changed, 22 insertions, 1 deletions
diff --git a/Lib/test/test_multiprocessing.py b/Lib/test/test_multiprocessing.py
index 847deb4..ab6d36a 100644
--- a/Lib/test/test_multiprocessing.py
+++ b/Lib/test/test_multiprocessing.py
@@ -18,6 +18,7 @@ import socket
import random
import logging
import test.support
+import test.script_helper
# Skip tests if _multiprocessing wasn't built.
@@ -2429,9 +2430,29 @@ class TestTimeouts(unittest.TestCase):
finally:
socket.setdefaulttimeout(old_timeout)
+#
+# Test what happens with no "if __name__ == '__main__'"
+#
+
+class TestNoForkBomb(unittest.TestCase):
+ def test_noforkbomb(self):
+ name = os.path.join(os.path.dirname(__file__), 'mp_fork_bomb.py')
+ if WIN32:
+ rc, out, err = test.script_helper.assert_python_failure(name)
+ self.assertEqual('', out.decode('ascii'))
+ self.assertIn('RuntimeError', err.decode('ascii'))
+ else:
+ rc, out, err = test.script_helper.assert_python_ok(name)
+ self.assertEqual('123', out.decode('ascii').rstrip())
+ self.assertEqual('', err.decode('ascii'))
+
+#
+#
+#
+
testcases_other = [OtherTest, TestInvalidHandle, TestInitializers,
TestStdinBadfiledescriptor, TestInvalidFamily,
- TestTimeouts]
+ TestTimeouts, TestNoForkBomb]
#
#