mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Skip UDP testing for MacPython (for now), it hangs. This may be due to
GUSI/Threading interaction, I'm not sure, but I don't have the time to fix this right now.
This commit is contained in:
parent
fdf427f584
commit
522e7694ed
1 changed files with 3 additions and 1 deletions
|
@ -8,6 +8,7 @@ import select
|
|||
import time
|
||||
import thread, threading
|
||||
import Queue
|
||||
import sys
|
||||
|
||||
PORT = 50007
|
||||
HOST = 'localhost'
|
||||
|
@ -606,7 +607,8 @@ def test_main():
|
|||
suite = unittest.TestSuite()
|
||||
suite.addTest(unittest.makeSuite(GeneralModuleTests))
|
||||
suite.addTest(unittest.makeSuite(BasicTCPTest))
|
||||
suite.addTest(unittest.makeSuite(BasicUDPTest))
|
||||
if sys.platform != 'mac':
|
||||
suite.addTest(unittest.makeSuite(BasicUDPTest))
|
||||
suite.addTest(unittest.makeSuite(NonBlockingTCPTests))
|
||||
suite.addTest(unittest.makeSuite(FileObjectClassTestCase))
|
||||
suite.addTest(unittest.makeSuite(UnbufferedFileObjectClassTestCase))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue