test_concurrent_futures: dump ulimit -a to check a failure on x86 FreeBSD 7.2 3.x, buildbot

This commit is contained in:
Victor Stinner 2010-11-06 13:10:29 +00:00
parent 273b766870
commit 7322fcf84b
1 changed files with 4 additions and 0 deletions

View File

@ -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,