diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2010-11-06 13:10:29 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2010-11-06 13:10:29 (GMT) |
commit | 7322fcf84bdd516983588cc64b1e7166c62d9e12 (patch) | |
tree | b619ab0c56f258a9c86c0c1a7cda6b316f683ac4 /Lib | |
parent | 273b7668704c97db1fa36e45eded391a73c5e73f (diff) | |
download | cpython-7322fcf84bdd516983588cc64b1e7166c62d9e12.zip cpython-7322fcf84bdd516983588cc64b1e7166c62d9e12.tar.gz cpython-7322fcf84bdd516983588cc64b1e7166c62d9e12.tar.bz2 |
test_concurrent_futures: dump ulimit -a to check a failure on x86 FreeBSD 7.2 3.x, buildbot
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_concurrent_futures.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/test/test_concurrent_futures.py b/Lib/test/test_concurrent_futures.py index 6427368..fd94f9f 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, |