diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-05-28 12:50:15 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-05-28 12:50:15 (GMT) |
commit | 12516e2c1b6dc577ea57ba45780637092afec671 (patch) | |
tree | 75901f1ddc7352e03a978ab3c5cd6720ecb23f46 /Lib/test | |
parent | ea2b490f3dad99cfd677be9fd0c730622a723f38 (diff) | |
download | cpython-12516e2c1b6dc577ea57ba45780637092afec671.zip cpython-12516e2c1b6dc577ea57ba45780637092afec671.tar.gz cpython-12516e2c1b6dc577ea57ba45780637092afec671.tar.bz2 |
Issue #17746: Skip test_shutil.test_non_matching_mode when run as root or
on unsuitable platform/environment.
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_shutil.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/test/test_shutil.py b/Lib/test/test_shutil.py index 308f4f2..6794a93 100644 --- a/Lib/test/test_shutil.py +++ b/Lib/test/test_shutil.py @@ -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) |