diff options
author | Christian Heimes <christian@python.org> | 2022-03-17 11:09:57 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-17 11:09:57 (GMT) |
commit | ef1327e3b622e0cafdf8bfc1f480fed0dd386be6 (patch) | |
tree | 30a0e34b5a38b7dd997e5223880618a9b3e5acbd /Tools | |
parent | c2e3c06139e9468efb32629d147d99a1672d9e19 (diff) | |
download | cpython-ef1327e3b622e0cafdf8bfc1f480fed0dd386be6.zip cpython-ef1327e3b622e0cafdf8bfc1f480fed0dd386be6.tar.gz cpython-ef1327e3b622e0cafdf8bfc1f480fed0dd386be6.tar.bz2 |
bpo-40280: Skip more tests on Emscripten (GH-31947)
- lchmod, lchown are not fully implemented
- skip umask tests
- cannot fstat unlinked or renamed files yet
- ignore musl libc issues that affect Emscripten
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/wasm/config.site-wasm32-emscripten | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Tools/wasm/config.site-wasm32-emscripten b/Tools/wasm/config.site-wasm32-emscripten index 2a60198..7f2df3a 100644 --- a/Tools/wasm/config.site-wasm32-emscripten +++ b/Tools/wasm/config.site-wasm32-emscripten @@ -53,6 +53,9 @@ ac_cv_func_symlinkat=no ac_cv_func_readlinkat=no ac_cv_func_fchmodat=no ac_cv_func_dup3=no +# lchmod/lchown are implemented, but fail with ENOTSUP. +ac_cv_func_lchmod=no +ac_cv_func_lchown=no # Syscalls not implemented in emscripten # [Errno 52] Function not implemented |