mirror of
https://github.com/luau-lang/luau.git
synced 2024-12-13 05:20:38 +00:00
Lower the stack limit to make tests pass in debug
This commit is contained in:
parent
eee60dcaf3
commit
57faf7aaf2
1 changed files with 1 additions and 1 deletions
|
@ -334,7 +334,7 @@ TEST_CASE_FIXTURE(Fixture, "check_expr_recursion_limit")
|
||||||
#if defined(LUAU_ENABLE_ASAN)
|
#if defined(LUAU_ENABLE_ASAN)
|
||||||
int limit = 250;
|
int limit = 250;
|
||||||
#elif defined(_DEBUG) || defined(_NOOPT)
|
#elif defined(_DEBUG) || defined(_NOOPT)
|
||||||
int limit = 350;
|
int limit = 300;
|
||||||
#else
|
#else
|
||||||
int limit = 600;
|
int limit = 600;
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue