From 330ce596c25abf4497f721c9382e36b2b79e8bfe Mon Sep 17 00:00:00 2001 From: Antoine Pitrou Date: Fri, 22 Nov 2013 18:05:06 +0100 Subject: [PATCH] Hopefully fix test_is_socket_true --- Lib/test/test_pathlib.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Lib/test/test_pathlib.py b/Lib/test/test_pathlib.py index 7ece1f5969..e23e5a7de0 100755 --- a/Lib/test/test_pathlib.py +++ b/Lib/test/test_pathlib.py @@ -1499,9 +1499,13 @@ class _BasePathTest(object): @unittest.skipUnless(hasattr(socket, "AF_UNIX"), "Unix sockets required") def test_is_socket_true(self): P = self.cls(BASE, 'mysock') - sock = socket.socket(socket.SOCK_STREAM, socket.AF_UNIX) + sock = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM) self.addCleanup(sock.close) - sock.bind(str(P)) + try: + sock.bind(str(P)) + except OSError as e: + if "AF_UNIX path too long" in str(e): + self.skipTest("cannot bind Unix socket: " + str(e)) self.assertTrue(P.is_socket()) self.assertFalse(P.is_fifo()) self.assertFalse(P.is_file()) -- 2.49.0