summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_multiprocessing.py
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-04-03 18:13:45 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-04-03 18:13:45 (GMT)
commit5c73e8eaf40e092dfb3c2a92195b300afc99d2cf (patch)
treedaf800c64e1ee0274db8c58b1513d5285cd39ed1 /Lib/test/test_multiprocessing.py
parent395c879da7386ef2df503bf3636da65fa6cb60ef (diff)
parent6d20cba8d646ec055851afac5494cc0e72d0dfa8 (diff)
downloadcpython-5c73e8eaf40e092dfb3c2a92195b300afc99d2cf.zip
cpython-5c73e8eaf40e092dfb3c2a92195b300afc99d2cf.tar.gz
cpython-5c73e8eaf40e092dfb3c2a92195b300afc99d2cf.tar.bz2
Issue #14482: Raise a ValueError, not a NameError, when trying to create
a multiprocessing Client or Listener with an AF_UNIX type address under Windows. Patch by Popa Claudiu.
Diffstat (limited to 'Lib/test/test_multiprocessing.py')
-rw-r--r--Lib/test/test_multiprocessing.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/test/test_multiprocessing.py b/Lib/test/test_multiprocessing.py
index b4f511c..2bcdb4e 100644
--- a/Lib/test/test_multiprocessing.py
+++ b/Lib/test/test_multiprocessing.py
@@ -2649,6 +2649,10 @@ class TestInvalidFamily(unittest.TestCase):
with self.assertRaises(ValueError):
multiprocessing.connection.Listener(r'\\.\test')
+ @unittest.skipUnless(WIN32, "skipped on non-Windows platforms")
+ def test_invalid_family_win32(self):
+ with self.assertRaises(ValueError):
+ multiprocessing.connection.Listener('/var/test.pipe')
testcases_other = [OtherTest, TestInvalidHandle, TestInitializers,
TestStdinBadfiledescriptor, TestWait, TestInvalidFamily]