From: Guido van Rossum Date: Thu, 20 Jun 2002 03:40:16 +0000 (+0000) Subject: I get failures half of the time that I run this, so I'll disable X-Git-Tag: v2.3c1~5263 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3875e90274e7e14b5c147cd85f2464499f327f31;p=thirdparty%2FPython%2Fcpython.git I get failures half of the time that I run this, so I'll disable running this as part of the regular test suite again, until I have time to figure out why. --- diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py index a2d10ef1fec5..c9ef5d69958c 100644 --- a/Lib/test/test_socket.py +++ b/Lib/test/test_socket.py @@ -544,7 +544,7 @@ class FileObjectClassTestCase(SocketConnectedTest): self.cli_file.write(MSG) self.cli_file.flush() -def test_main(): +def main(): suite = unittest.TestSuite() suite.addTest(unittest.makeSuite(GeneralModuleTests)) suite.addTest(unittest.makeSuite(BasicTCPTest)) @@ -554,4 +554,4 @@ def test_main(): test_support.run_suite(suite) if __name__ == "__main__": - test_main() + main()