summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authordoko@ubuntu.com <doko@ubuntu.com>2014-04-17 17:47:16 (GMT)
committerdoko@ubuntu.com <doko@ubuntu.com>2014-04-17 17:47:16 (GMT)
commit4a173bc4edfbc731f227a84a26eb24b6aef91dd6 (patch)
treee960a4496af35b2aecdf2ab3868750413d1e50a7 /Lib/test
parenta3818a304327d31b4360dc9b545f2655d27c626e (diff)
downloadcpython-4a173bc4edfbc731f227a84a26eb24b6aef91dd6.zip
cpython-4a173bc4edfbc731f227a84a26eb24b6aef91dd6.tar.gz
cpython-4a173bc4edfbc731f227a84a26eb24b6aef91dd6.tar.bz2
Fixes for KFreeBSD and the Hurd:
- Issue #21274: Define PATH_MAX for GNU/Hurd in Python/pythonrun.c. - Issue #21276: posixmodule: Don't define USE_XATTRS on KFreeBSD and the Hurd. - Issue #21275: Fix a socket test on KFreeBSD.
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test_socket.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py
index e94f539..aed10a7 100644
--- a/Lib/test/test_socket.py
+++ b/Lib/test/test_socket.py
@@ -867,7 +867,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.startswith(('freebsd', 'netbsd'))
+ if (sys.platform.startswith(('freebsd', 'netbsd', 'gnukfreebsd'))
or sys.platform in ('linux', 'darwin')):
# avoid the 'echo' service on this platform, as there is an
# assumption breaking non-standard port/protocol entry