diff options
Diffstat (limited to 'test')
| -rw-r--r-- | test/main/main.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/main/main.cpp b/test/main/main.cpp index 21471fce..e012218c 100644 --- a/test/main/main.cpp +++ b/test/main/main.cpp @@ -24,8 +24,9 @@ class TestConsole : public Console { protected: virtual auto RegisterExtraComponents() -> void { RegisterCatch2(); } virtual auto GetStackSizeKiB() -> uint16_t { - // Catch2 requires a particularly large stack. - return 24; + // Catch2 requires a particularly large stack to begin with, and some of the + // tests (*cough*libmad*cough*) also use a lot of stack. + return 64; } }; |
