[Python-checkins] r46990 - python/trunk/Lib/test/test_zipfile64.py

neal.norwitz python-checkins at python.org
Fri Jun 16 06:30:36 CEST 2006


Author: neal.norwitz
Date: Fri Jun 16 06:30:34 2006
New Revision: 46990

Modified:
   python/trunk/Lib/test/test_zipfile64.py
Log:
Disable this test until we can determine what to do about it

Modified: python/trunk/Lib/test/test_zipfile64.py
==============================================================================
--- python/trunk/Lib/test/test_zipfile64.py	(original)
+++ python/trunk/Lib/test/test_zipfile64.py	Fri Jun 16 06:30:34 2006
@@ -2,8 +2,11 @@
 # The test_support.requires call is the only reason for keeping this separate
 # from test_zipfile
 from test import test_support
+# XXX(nnorwitz): disable this test by looking for extra largfile resource
+# which doesn't exist.  This test takes over 30 minutes to run in general
+# and requires more disk space than most of the buildbots.
 test_support.requires(
-        'largefile',
+        'extralargefile',
         'test requires loads of disk-space bytes and a long time to run'
     )
 


More information about the Python-checkins mailing list