From 58cc0bcb443d8c6cd7c5b9c2f52da4241d21fa25 Mon Sep 17 00:00:00 2001 From: Giampaolo Rodola Date: Tue, 3 Jan 2012 23:02:32 +0000 Subject: test refactoring --- README | 4 +--- test/test_sendfile.py | 4 ++-- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/README b/README index 8d333ea..5e2384c 100644 --- a/README +++ b/README @@ -1,4 +1,3 @@ - ================================= About ================================= @@ -29,7 +28,7 @@ Dragon Fly BSD SunOS AIX (non properly tested) -Python versions from 2.4 to 3.2 by using a single code base. +Python versions from 2.5 to 3.3 by using a single code base. ================================= Example usage @@ -76,4 +75,3 @@ took over maintenance and added support for: - large files - Linux header/trailer support via TCP_CORK socket option - non-blocking sockets - diff --git a/test/test_sendfile.py b/test/test_sendfile.py index 0052aaa..b5299fa 100644 --- a/test/test_sendfile.py +++ b/test/test_sendfile.py @@ -489,7 +489,7 @@ def test_main(): def cleanup(): safe_remove(TESTFN) safe_remove(TESTFN2) -# safe_remove(TESTFN3) # XXX + safe_remove(TESTFN3) atexit.register(cleanup) @@ -511,7 +511,7 @@ def test_main(): test_suite = unittest.TestSuite() test_suite.addTest(unittest.makeSuite(TestSendfile)) if has_large_file_support(): - # test_suite.addTest(unittest.makeSuite(TestLargeFile)) # XXX + test_suite.addTest(unittest.makeSuite(TestLargeFile)) pass else: atexit.register(warnings.warn, "couldn't run large file test because " -- cgit v1.2.1