diff options
author | Christian Heimes <christian@python.org> | 2022-06-06 17:24:11 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-06 17:24:11 (GMT) |
commit | 22fed605e096eb74f3aa33f6d25aee76fdc2a3fa (patch) | |
tree | cd15eb66416ec5aa0ad33e48b0c76f98bb811b45 /Lib/test/test_pathlib.py | |
parent | 56b5daf15970be449d44e91f08db84c698ac5506 (diff) | |
download | cpython-22fed605e096eb74f3aa33f6d25aee76fdc2a3fa.zip cpython-22fed605e096eb74f3aa33f6d25aee76fdc2a3fa.tar.gz cpython-22fed605e096eb74f3aa33f6d25aee76fdc2a3fa.tar.bz2 |
gh-90473: Make chmod a dummy on WASI, skip chmod tests (GH-93534)
WASI does not have the ``chmod(2)`` syscall yet.
Diffstat (limited to 'Lib/test/test_pathlib.py')
-rw-r--r-- | Lib/test/test_pathlib.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/test/test_pathlib.py b/Lib/test/test_pathlib.py index 2215134..a426198 100644 --- a/Lib/test/test_pathlib.py +++ b/Lib/test/test_pathlib.py @@ -1902,6 +1902,7 @@ class _BasePathTest(object): with p: pass + @os_helper.skip_unless_working_chmod def test_chmod(self): p = self.cls(BASE) / 'fileA' mode = p.stat().st_mode @@ -1916,6 +1917,7 @@ class _BasePathTest(object): # On Windows, os.chmod does not follow symlinks (issue #15411) @only_posix + @os_helper.skip_unless_working_chmod def test_chmod_follow_symlinks_true(self): p = self.cls(BASE) / 'linkA' q = p.resolve() @@ -1931,6 +1933,7 @@ class _BasePathTest(object): # XXX also need a test for lchmod. + @os_helper.skip_unless_working_chmod def test_stat(self): p = self.cls(BASE) / 'fileA' st = p.stat() |