diff options
author | Christian Heimes <christian@python.org> | 2022-05-13 06:36:01 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-13 06:36:01 (GMT) |
commit | d81d57e9598dea741e049f3876ccd87072a38906 (patch) | |
tree | 8713f4691a8a27495ddc8aa2189838ee010f5d5c /Lib/test/test_builtin.py | |
parent | e371d5d5d125b0acdde2791d88562338a7359500 (diff) | |
download | cpython-d81d57e9598dea741e049f3876ccd87072a38906.zip cpython-d81d57e9598dea741e049f3876ccd87072a38906.tar.gz cpython-d81d57e9598dea741e049f3876ccd87072a38906.tar.bz2 |
gh-90473: Increase stack size, disable obmalloc on WASI (GH-92732)
Diffstat (limited to 'Lib/test/test_builtin.py')
-rw-r--r-- | Lib/test/test_builtin.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Lib/test/test_builtin.py b/Lib/test/test_builtin.py index ba7a7e2..efa9459 100644 --- a/Lib/test/test_builtin.py +++ b/Lib/test/test_builtin.py @@ -393,7 +393,10 @@ class BuiltinTest(unittest.TestCase): msg=f"source={source} mode={mode}") - @unittest.skipIf(support.is_emscripten, "socket.accept is broken") + @unittest.skipIf( + support.is_emscripten or support.is_wasi, + "socket.accept is broken" + ) def test_compile_top_level_await(self): """Test whether code some top level await can be compiled. |