diff options
author | Victor Stinner <vstinner@python.org> | 2023-09-05 21:59:40 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-05 21:59:40 (GMT) |
commit | cd2ef21b076b494224985e266c5f5f8b37c66618 (patch) | |
tree | 6b59dc73bde6164ceb19540f2f0454d2310bc439 /Misc/NEWS.d/next/Tests | |
parent | b87263be9b82f778317c2bdf45ecd2ff23d0ba1b (diff) | |
download | cpython-cd2ef21b076b494224985e266c5f5f8b37c66618.zip cpython-cd2ef21b076b494224985e266c5f5f8b37c66618.tar.gz cpython-cd2ef21b076b494224985e266c5f5f8b37c66618.tar.bz2 |
gh-108962: Skip test_tempfile.test_flags() if not supported (#108964)
Skip test_tempfile.test_flags() if chflags() fails with "OSError:
[Errno 45] Operation not supported" (ex: on FreeBSD 13).
Diffstat (limited to 'Misc/NEWS.d/next/Tests')
-rw-r--r-- | Misc/NEWS.d/next/Tests/2023-09-05-23-00-09.gh-issue-108962.R4NwuU.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tests/2023-09-05-23-00-09.gh-issue-108962.R4NwuU.rst b/Misc/NEWS.d/next/Tests/2023-09-05-23-00-09.gh-issue-108962.R4NwuU.rst new file mode 100644 index 0000000..380fb20 --- /dev/null +++ b/Misc/NEWS.d/next/Tests/2023-09-05-23-00-09.gh-issue-108962.R4NwuU.rst @@ -0,0 +1,3 @@ +Skip ``test_tempfile.test_flags()`` if ``chflags()`` fails with "OSError: +[Errno 45] Operation not supported" (ex: on FreeBSD 13). Patch by Victor +Stinner. |