summaryrefslogtreecommitdiffstats
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 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-11-07 04:36:56 (GMT)
commit2e598faade9cf6b630e3e22844dea39a6e5f91d8 (patch)
tree0194d14da1d9f1b403f6ad725ca24232485ab676 /Lib/test/test_concurrent_futures.py
parent62fbdd9b7b8eea80842acd63a425242452aa4e61 (diff)
downloadcpython-2e598faade9cf6b630e3e22844dea39a6e5f91d8.zip
cpython-2e598faade9cf6b630e3e22844dea39a6e5f91d8.tar.gz
cpython-2e598faade9cf6b630e3e22844dea39a6e5f91d8.tar.bz2
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 fd94f9f..6427368 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,