[Python-checkins] r86282 - python/branches/py3k/Lib/test/test_concurrent_futures.py

victor.stinner python-checkins at python.org
Sun Nov 7 05:37:02 CET 2010


Author: victor.stinner
Date: Sun Nov  7 05:36:56 2010
New Revision: 86282

Log:
test_concurrent_futures: remove temporary hack


Modified:
   python/branches/py3k/Lib/test/test_concurrent_futures.py

Modified: python/branches/py3k/Lib/test/test_concurrent_futures.py
==============================================================================
--- python/branches/py3k/Lib/test/test_concurrent_futures.py	(original)
+++ python/branches/py3k/Lib/test/test_concurrent_futures.py	Sun Nov  7 05:36:56 2010
@@ -815,10 +815,6 @@
         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,


More information about the Python-checkins mailing list