summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorChristian Heimes <christian@python.org>2022-06-06 17:24:11 (GMT)
committerGitHub <noreply@github.com>2022-06-06 17:24:11 (GMT)
commit22fed605e096eb74f3aa33f6d25aee76fdc2a3fa (patch)
treecd15eb66416ec5aa0ad33e48b0c76f98bb811b45 /Misc
parent56b5daf15970be449d44e91f08db84c698ac5506 (diff)
downloadcpython-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 'Misc')
-rw-r--r--Misc/NEWS.d/next/Tests/2022-06-05-10-16-45.gh-issue-90473.QMu7A8.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tests/2022-06-05-10-16-45.gh-issue-90473.QMu7A8.rst b/Misc/NEWS.d/next/Tests/2022-06-05-10-16-45.gh-issue-90473.QMu7A8.rst
new file mode 100644
index 0000000..6c76b7f
--- /dev/null
+++ b/Misc/NEWS.d/next/Tests/2022-06-05-10-16-45.gh-issue-90473.QMu7A8.rst
@@ -0,0 +1,2 @@
+WASI does not have a ``chmod(2)`` syscall. :func:`os.chmod` is now a dummy
+function on WASI. Skip all tests that depend on working :func:`os.chmod`.