[Python-checkins] python/dist/src/Lib/test test_socket.py,1.38,1.39

gvanrossum@users.sourceforge.net gvanrossum@users.sourceforge.net
Wed, 19 Jun 2002 20:40:18 -0700


Update of /cvsroot/python/python/dist/src/Lib/test
In directory usw-pr-cvs1:/tmp/cvs-serv9332

Modified Files:
	test_socket.py 
Log Message:
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.


Index: test_socket.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_socket.py,v
retrieving revision 1.38
retrieving revision 1.39
diff -C2 -d -r1.38 -r1.39
*** test_socket.py	18 Jun 2002 18:35:13 -0000	1.38
--- test_socket.py	20 Jun 2002 03:40:16 -0000	1.39
***************
*** 545,549 ****
          self.cli_file.flush()
  
! def test_main():
      suite = unittest.TestSuite()
      suite.addTest(unittest.makeSuite(GeneralModuleTests))
--- 545,549 ----
          self.cli_file.flush()
  
! def main():
      suite = unittest.TestSuite()
      suite.addTest(unittest.makeSuite(GeneralModuleTests))
***************
*** 555,557 ****
  
  if __name__ == "__main__":
!     test_main()
--- 555,557 ----
  
  if __name__ == "__main__":
!     main()