diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2010-11-07 04:36:56 +0000 |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2010-11-07 04:36:56 +0000 |
commit | 2e598faade9cf6b630e3e22844dea39a6e5f91d8 (patch) | |
tree | 0194d14da1d9f1b403f6ad725ca24232485ab676 | |
parent | 62fbdd9b7b8eea80842acd63a425242452aa4e61 (diff) | |
download | cpython-git-2e598faade9cf6b630e3e22844dea39a6e5f91d8.tar.gz |
test_concurrent_futures: remove temporary hack
-rw-r--r-- | Lib/test/test_concurrent_futures.py | 4 |
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, |