summaryrefslogtreecommitdiff
path: root/Lib
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2016-03-23 21:15:55 +0100
committerVictor Stinner <victor.stinner@gmail.com>2016-03-23 21:15:55 +0100
commit31b6e70e50e1d40684e87457dc541226bcc17b60 (patch)
tree8f9641e9db6ab711b604ead40fe490402f0b48a2 /Lib
parent43acfce2dfc1a10cff1dad3b233e0c748b1788d2 (diff)
downloadcpython-31b6e70e50e1d40684e87457dc541226bcc17b60.tar.gz
Fix test_spwd on OpenIndiana
Issue #18787: restore "bin" name in test_spwd but catch KeyError.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_spwd.py11
1 files changed, 8 insertions, 3 deletions
diff --git a/Lib/test/test_spwd.py b/Lib/test/test_spwd.py
index 3a11a2d1d6..e893f3a847 100644
--- a/Lib/test/test_spwd.py
+++ b/Lib/test/test_spwd.py
@@ -61,9 +61,14 @@ class TestSpwdRoot(unittest.TestCase):
class TestSpwdNonRoot(unittest.TestCase):
def test_getspnam_exception(self):
- with self.assertRaises(PermissionError) as cm:
- spwd.getspnam('root')
- self.assertEqual(str(cm.exception), '[Errno 13] Permission denied')
+ name = 'bin'
+ try:
+ with self.assertRaises(PermissionError) as cm:
+ spwd.getspnam(name)
+ except KeyError as exc:
+ self.skipTest("spwd entry %r doesn't exist: %s" % (name, exc))
+ else:
+ self.assertEqual(str(cm.exception), '[Errno 13] Permission denied')
if __name__ == "__main__":