[ion] Increase stack in DEBUG=1 to avoid breaking the test due to stack

overflow
This commit is contained in:
Émilie Feral
2020-06-12 14:12:35 +02:00
parent d21c9b0880
commit 1ed97500d0

View File

@@ -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];