[Python-checkins] r61194 - python/trunk/Lib/test/test_largefile.py

brett.cannon python-checkins at python.org
Mon Mar 3 04:24:48 CET 2008


Author: brett.cannon
Date: Mon Mar  3 04:24:48 2008
New Revision: 61194

Modified:
   python/trunk/Lib/test/test_largefile.py
Log:
Add a note in the main test class' docstring that the order of execution of the
tests is important.


Modified: python/trunk/Lib/test/test_largefile.py
==============================================================================
--- python/trunk/Lib/test/test_largefile.py	(original)
+++ python/trunk/Lib/test/test_largefile.py	Mon Mar  3 04:24:48 2008
@@ -25,6 +25,10 @@
     """Test that each file function works as expected for a large
     (i.e. > 2GB, do  we have to check > 4GB) files.
 
+    NOTE: the order of execution of the test methods is important! test_seek
+    must run first to create the test file. File cleanup must also be handled
+    outside the test instances because of this.
+
     """
 
     def test_seek(self):


More information about the Python-checkins mailing list