[Python-3000-checkins] r61191 - python/branches/py3k/Lib/test/test_largefile.py

brett.cannon python-3000-checkins at python.org
Mon Mar 3 03:31:43 CET 2008


Author: brett.cannon
Date: Mon Mar  3 03:31:43 2008
New Revision: 61191

Modified:
   python/branches/py3k/Lib/test/test_largefile.py
Log:
Actually have test_largefile execute. Call to test.test_support.run_unittest()
somehow got lost.


Modified: python/branches/py3k/Lib/test/test_largefile.py
==============================================================================
--- python/branches/py3k/Lib/test/test_largefile.py	(original)
+++ python/branches/py3k/Lib/test/test_largefile.py	Mon Mar  3 03:31:43 2008
@@ -171,6 +171,10 @@
     f = open(TESTFN, 'w')
     if hasattr(f, 'truncate'):
         suite.addTest(TestCase('test_truncate'))
+    f.close()
+    unlink(TESTFN)
+    run_unittest(suite)
+    unlink(TESTFN)
 
 if __name__ == '__main__':
     main_test()


More information about the Python-3000-checkins mailing list