Skip to content

Commit efd564c

Browse files
committed
Fix RelWithDebInfo MSVC tests
1 parent 978a216 commit efd564c

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tests/Compiler.test.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2671,6 +2671,9 @@ TEST_CASE("RecursionParse")
26712671
ScopedFastInt flag(FInt::LuauRecursionLimit, 200);
26722672
#elif defined(_NOOPT) || defined(_DEBUG)
26732673
ScopedFastInt flag(FInt::LuauRecursionLimit, 300);
2674+
// ServerLua: We do RelWithDebinfo MSVC builds and it does not like large stacks.
2675+
#elif defined(_MSC_VER)
2676+
ScopedFastInt flag(FInt::LuauRecursionLimit, 300);
26742677
#endif
26752678

26762679
Luau::BytecodeBuilder bcb;

0 commit comments

Comments
 (0)