summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-11-06 13:10:29 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-11-06 13:10:29 (GMT)
commit7322fcf84bdd516983588cc64b1e7166c62d9e12 (patch)
treeb619ab0c56f258a9c86c0c1a7cda6b316f683ac4 /Lib
parent273b7668704c97db1fa36e45eded391a73c5e73f (diff)
downloadcpython-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.py4
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,