From: Skip Montanaro Date: Mon, 16 Aug 2004 15:35:54 +0000 (+0000) Subject: Being bsd-based, darwin/macosx has the same limitation w.r.t. the "echo" X-Git-Tag: v2.4a3~231 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d4ff2069068278cb61167e5b38de642980606018;p=thirdparty%2FPython%2Fcpython.git Being bsd-based, darwin/macosx has the same limitation w.r.t. the "echo" service. --- diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py index 18061fe0144d..4e0e2429476b 100644 --- a/Lib/test/test_socket.py +++ b/Lib/test/test_socket.py @@ -311,7 +311,7 @@ class GeneralModuleTests(unittest.TestCase): # Find one service that exists, then check all the related interfaces. # I've ordered this by protocols that have both a tcp and udp # protocol, at least for modern Linuxes. - if sys.platform in ('freebsd4', 'freebsd5'): + if sys.platform in ('freebsd4', 'freebsd5', 'darwin'): # avoid the 'echo' service on this platform, as there is an # assumption breaking non-standard port/protocol entry services = ('daytime', 'qotd', 'domain')