summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_os.py
diff options
context:
space:
mode:
authorGregory P. Smith <greg@mad-scientist.com>2010-03-01 05:48:57 (GMT)
committerGregory P. Smith <greg@mad-scientist.com>2010-03-01 05:48:57 (GMT)
commit8baa745ceb1a211e164436fb0a005fd025fe8ddf (patch)
tree2206f4dc958e270bcbdf27258486ed11267de4eb /Lib/test/test_os.py
parentc21d0cb6cf1c32158a37772545fb71e730ab1323 (diff)
downloadcpython-8baa745ceb1a211e164436fb0a005fd025fe8ddf.zip
cpython-8baa745ceb1a211e164436fb0a005fd025fe8ddf.tar.gz
cpython-8baa745ceb1a211e164436fb0a005fd025fe8ddf.tar.bz2
Merged revisions 78546 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r78546 | gregory.p.smith | 2010-02-28 21:43:43 -0800 (Sun, 28 Feb 2010) | 3 lines Fixes issue #7999: os.setreuid() and os.setregid() would refuse to accept a -1 parameter on some platforms such as OS X. ........
Diffstat (limited to 'Lib/test/test_os.py')
-rw-r--r--Lib/test/test_os.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py
index b3f72f4..414da98 100644
--- a/Lib/test/test_os.py
+++ b/Lib/test/test_os.py
@@ -643,6 +643,7 @@ if sys.platform != 'win32':
self.assertRaises(os.error, os.setreuid, 0, 0)
self.assertRaises(OverflowError, os.setreuid, 1<<32, 0)
self.assertRaises(OverflowError, os.setreuid, 0, 1<<32)
+ os.setreuid(-1, -1) # Does nothing, but it needs to accept -1
if hasattr(os, 'setregid'):
def test_setregid(self):
@@ -650,6 +651,7 @@ if sys.platform != 'win32':
self.assertRaises(os.error, os.setregid, 0, 0)
self.assertRaises(OverflowError, os.setregid, 1<<32, 0)
self.assertRaises(OverflowError, os.setregid, 0, 1<<32)
+ os.setregid(-1, -1) # Does nothing, but it needs to accept -1
else:
class PosixUidGidTests(unittest.TestCase):
pass