summaryrefslogtreecommitdiff
path: root/Lib/test/test_concurrent_futures.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-11-07 04:36:56 +0000
committerVictor Stinner <victor.stinner@haypocalc.com>2010-11-07 04:36:56 +0000
commit979ce2f0aa42fe9face69cc9c7159a0d4a7cc088 (patch)
tree47eb91d1218e1579691c78d865ef7ed38bea537d /Lib/test/test_concurrent_futures.py
parentef44f8223798e33e6b900f40cdd8d148858d79ff (diff)
downloadcpython-979ce2f0aa42fe9face69cc9c7159a0d4a7cc088.tar.gz
test_concurrent_futures: remove temporary hack
Diffstat (limited to 'Lib/test/test_concurrent_futures.py')
-rw-r--r--Lib/test/test_concurrent_futures.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/Lib/test/test_concurrent_futures.py b/Lib/test/test_concurrent_futures.py
index fd94f9f32c..6427368fd6 100644
--- a/Lib/test/test_concurrent_futures.py
+++ b/Lib/test/test_concurrent_futures.py
@@ -815,10 +815,6 @@ 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,