[ion/simulator] Temporarly increase stack size on simulator

Change-Id: I0f27277ea704f81e316c7ff78fb7bed8c70ff4ae
This commit is contained in:
Hugo Saint-Vignes
2020-10-05 15:12:13 +02:00
committed by LeaNumworks
parent 5eaea62073
commit 962136ce8f

View File

@@ -15,7 +15,9 @@
constexpr int kHeapSize = 131072;
#ifdef NDEBUG
constexpr int kStackSize = 32768;
/* TODO : Reduce stack memory cost in prime factorization to allow running
* tests with the actual stack size */
constexpr int kStackSize = 32768*10;
#else
constexpr int kStackSize = 32768*10; // In DEBUG mode, we increase the stack to be able to pass the tests
#endif