Issue #14992: Prevent test_os test_exist_ok_s_isgid_directory test case

failure on OS X built with 10.4 ABI.
This commit is contained in:
Ned Deily 2012-08-08 20:57:24 -07:00
parent 05c35a6a6b
commit c622f4254b

View file

@ -592,7 +592,10 @@ class MakedirTests(unittest.TestCase):
try:
existing_testfn_mode = stat.S_IMODE(
os.lstat(support.TESTFN).st_mode)
os.chmod(support.TESTFN, existing_testfn_mode | S_ISGID)
try:
os.chmod(support.TESTFN, existing_testfn_mode | S_ISGID)
except OSError:
raise unittest.SkipTest('Cannot set S_ISGID for dir.')
if (os.lstat(support.TESTFN).st_mode & S_ISGID != S_ISGID):
raise unittest.SkipTest('No support for S_ISGID dir mode.')
# The os should apply S_ISGID from the parent dir for us, but