Commit 12516e2c authored by Serhiy Storchaka's avatar Serhiy Storchaka

Issue #17746: Skip test_shutil.test_non_matching_mode when run as root or

on unsuitable platform/environment.
parent ea2b490f
......@@ -1327,9 +1327,13 @@ class TestWhich(unittest.TestCase):
# Other platforms: shouldn't match in the current directory.
self.assertIsNone(rv)
@unittest.skipIf(hasattr(os, 'geteuid') and os.geteuid() == 0,
'non-root user required')
def test_non_matching_mode(self):
# Set the file read-only and ask for writeable files.
os.chmod(self.temp_file.name, stat.S_IREAD)
if os.access(self.temp_file.name, os.W_OK):
self.skipTest("can't set the file read-only")
rv = shutil.which(self.file, path=self.dir, mode=os.W_OK)
self.assertIsNone(rv)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment