From: <pj...@us...> - 2010-04-09 01:32:50
|
Revision: 7003 http://jython.svn.sourceforge.net/jython/?rev=7003&view=rev Author: pjenvey Date: 2010-04-09 01:32:44 +0000 (Fri, 09 Apr 2010) Log Message: ----------- workaround harmless failure on FreeBSD Modified Paths: -------------- trunk/jython/Lib/test/test_socket.py Modified: trunk/jython/Lib/test/test_socket.py =================================================================== --- trunk/jython/Lib/test/test_socket.py 2010-04-06 02:02:34 UTC (rev 7002) +++ trunk/jython/Lib/test/test_socket.py 2010-04-09 01:32:44 UTC (rev 7003) @@ -354,7 +354,7 @@ # I've ordered this by protocols that have both a tcp and udp # protocol, at least for modern Linuxes. if sys.platform in ('linux2', 'freebsd4', 'freebsd5', 'freebsd6', - 'darwin'): + 'darwin') or is_bsd: # avoid the 'echo' service on this platform, as there is an # assumption breaking non-standard port/protocol entry services = ('daytime', 'qotd', 'domain') This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |