diff options
author | Christian Heimes <christian@python.org> | 2022-05-23 08:39:57 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-23 08:39:57 (GMT) |
commit | 760ec8940aabd6a7fc471bd913ea1ac501cc604b (patch) | |
tree | ee95f9ffb3214de69ea0e220c577a05c65d1e4e0 /Tools | |
parent | 88f0d0c1e8fdda036f3f64b0048911ba28ce7f06 (diff) | |
download | cpython-760ec8940aabd6a7fc471bd913ea1ac501cc604b.zip cpython-760ec8940aabd6a7fc471bd913ea1ac501cc604b.tar.gz cpython-760ec8940aabd6a7fc471bd913ea1ac501cc604b.tar.bz2 |
gh-90473: WASI: skip gethostname tests (GH-93092)
- WASI's ``gethostname()`` is a stub that always fails with OSError
``ENOTSUP``
- skip mailcap ``test`` if subprocess is not available
- WASI process_time clock does not work.
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/wasm/README.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Tools/wasm/README.md b/Tools/wasm/README.md index 977b2bb..9e253bc 100644 --- a/Tools/wasm/README.md +++ b/Tools/wasm/README.md @@ -239,6 +239,7 @@ are: yet. A future version of WASI may provide a limited ``set_permissions`` API. - File locking (``fcntl``) is not available. - ``os.pipe()``, ``os.mkfifo()``, and ``os.mknod()`` are not supported. +- ``process_time`` clock does not work. # Detect WebAssembly builds |