--- Lib/test/test_multiprocessing.py 2014-04-03 18:04:55.000000000 +0200 +++ Lib/test/test_multiprocessing.py 2014-04-03 18:05:08.000000000 +0200 @@ -1012,7 +1012,7 @@ class _TestCondition(BaseTestCase): def _test_wait_result(cls, c, pid): with c: c.notify() - time.sleep(1) + time.sleep(20) if pid is not None: os.kill(pid, signal.SIGINT) @@ -1032,7 +1032,7 @@ class _TestCondition(BaseTestCase): self.assertTrue(c.wait(10)) if pid is not None: - self.assertRaises(KeyboardInterrupt, c.wait, 10) + self.assertRaises(KeyboardInterrupt, c.wait, 60) p.join()