EMX fork() emulation not good enough to cope with test_socketserver

This commit is contained in:
Andrew MacIntyre 2003-01-02 12:49:00 +00:00
parent 34d3e2d22a
commit c6fff897d7
1 changed files with 2 additions and 2 deletions

View File

@ -124,10 +124,10 @@ def testloop(proto, servers, hdlrcls, testfunc):
if verbose: print "done"
tcpservers = [TCPServer, ThreadingTCPServer]
if hasattr(os, 'fork'):
if hasattr(os, 'fork') and os.name not in ('os2',):
tcpservers.append(ForkingTCPServer)
udpservers = [UDPServer, ThreadingUDPServer]
if hasattr(os, 'fork'):
if hasattr(os, 'fork') and os.name not in ('os2',):
udpservers.append(ForkingUDPServer)
if not hasattr(socket, 'AF_UNIX'):