summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorjacqueline <me@jacqueline.id.au>2022-12-06 13:17:56 +1100
committerjacqueline <me@jacqueline.id.au>2022-12-06 13:17:56 +1100
commitf35bb64c2b8dbb72fd15f1880e4d01d263660910 (patch)
tree4696065116c21147da02b6e6470a6215b343081f /test
parente0b2562cc4e0e5ae73efacddf68b83bd9fbb6acb (diff)
downloadtangara-fw-f35bb64c2b8dbb72fd15f1880e4d01d263660910.tar.gz
basic i2s output element
Diffstat (limited to 'test')
-rw-r--r--test/main/main.cpp5
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;
}
};