gh-90473: Decrease recursion limit and skip tests on WASI (GH-92803)

(cherry picked from commit 137fd3d88a)

Co-authored-by: Christian Heimes <christian@python.org>
This commit is contained in:
Miss Islington (bot) 2022-05-19 08:05:52 -07:00 committed by GitHub
parent 611d43c2a4
commit 7afccd34a6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
20 changed files with 109 additions and 14 deletions

View file

@ -37,7 +37,11 @@ EXTENSION_PREFIX = """\
# define D(x)
#endif
# define MAXSTACK 6000
#ifdef __wasi__
# define MAXSTACK 4000
#else
# define MAXSTACK 6000
#endif
"""