diff options
author | Christian Heimes <christian@python.org> | 2022-06-02 22:44:48 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-02 22:44:48 (GMT) |
commit | 069c96f84ccd302436be180c8628289cc0efa977 (patch) | |
tree | a012983468dcd35f92f451daf8c18cc16d6caa51 /Lib/test/test_shutil.py | |
parent | 94b1586ca538d24388a159de6dda7eff1c230364 (diff) | |
download | cpython-069c96f84ccd302436be180c8628289cc0efa977.zip cpython-069c96f84ccd302436be180c8628289cc0efa977.tar.gz cpython-069c96f84ccd302436be180c8628289cc0efa977.tar.bz2 |
gh-90473: Skip and document more failing tests on WASI (GH-93436)
- Mark more ``umask()`` cases
- ``dup()`` is not supported
- ``/dev/null`` is not available
- document missing features
- mark more modules as not available
Diffstat (limited to 'Lib/test/test_shutil.py')
-rw-r--r-- | Lib/test/test_shutil.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_shutil.py b/Lib/test/test_shutil.py index a61bb12..c943905 100644 --- a/Lib/test/test_shutil.py +++ b/Lib/test/test_shutil.py @@ -2652,6 +2652,7 @@ class TestGetTerminalSize(unittest.TestCase): self.assertEqual(expected, actual) + @unittest.skipIf(support.is_wasi, "WASI has no /dev/null") def test_fallback(self): with os_helper.EnvironmentVarGuard() as env: del env['LINES'] |