mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-18 21:30:38 +01:00
[ion] Increase stack in DEBUG=1 to avoid breaking the test due to stack
overflow
This commit is contained in:
@@ -17,7 +17,7 @@ constexpr int kHeapSize = 131072;
|
||||
#ifdef NDEBUG
|
||||
constexpr int kStackSize = 32768;
|
||||
#else
|
||||
constexpr int kStackSize = 32768*2; // In DEBUG mode, we increase the stack to be able to pass the tests
|
||||
constexpr int kStackSize = 32768*10; // In DEBUG mode, we increase the stack to be able to pass the tests
|
||||
#endif
|
||||
|
||||
char heap[kHeapSize];
|
||||
|
||||
Reference in New Issue
Block a user