commit | 7f757edf15d130f82149c2133974056db1be201e | [log] [tgz] |
---|---|---|
author | Brett Cannon <bcannon@gmail.com> | Mon Mar 03 02:31:43 2008 +0000 |
committer | Brett Cannon <bcannon@gmail.com> | Mon Mar 03 02:31:43 2008 +0000 |
tree | d959a3e0a07c07b35a3e84c611672dbc7e64dd26 | |
parent | b558a2e13abdbd8ea03691fcf05603c90ef5c091 [diff] |
Actually have test_largefile execute. Call to test.test_support.run_unittest() somehow got lost.
diff --git a/Lib/test/test_largefile.py b/Lib/test/test_largefile.py index f7697d2..8157ddb 100644 --- a/Lib/test/test_largefile.py +++ b/Lib/test/test_largefile.py
@@ -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()