From: Victor Stinner Date: Sat, 6 Nov 2010 13:10:29 +0000 (+0000) Subject: test_concurrent_futures: dump ulimit -a to check a failure on x86 FreeBSD 7.2 3.x... X-Git-Tag: v3.2a4~101 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7322fcf84bdd516983588cc64b1e7166c62d9e12;p=thirdparty%2FPython%2Fcpython.git test_concurrent_futures: dump ulimit -a to check a failure on x86 FreeBSD 7.2 3.x, buildbot --- diff --git a/Lib/test/test_concurrent_futures.py b/Lib/test/test_concurrent_futures.py index 6427368fd673..fd94f9f32ccb 100644 --- a/Lib/test/test_concurrent_futures.py +++ b/Lib/test/test_concurrent_futures.py @@ -815,6 +815,10 @@ class FutureTests(unittest.TestCase): self.assertTrue(isinstance(f1.exception(timeout=5), IOError)) def test_main(): + # FIXME: remove this temporary hack to check a failure + # on "x86 FreeBSD 7.2 3.x" buildbot + import os; os.system("ulimit -a") + test.support.run_unittest(ProcessPoolExecutorTest, ThreadPoolExecutorTest, ProcessPoolWaitTests,