summaryrefslogtreecommitdiffstats
path: root/testsuites/samples
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2018-01-22 15:23:26 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2018-01-22 15:24:13 +0100
commit0349a2b54432fc14e798a0dd10e34848e38dc6a0 (patch)
tree2f47aaccbc01b763b59b73427739e035f125ac73 /testsuites/samples
parentpsxchroot01: Force release of global locations (diff)
downloadrtems-0349a2b54432fc14e798a0dd10e34848e38dc6a0.tar.bz2
cdtest: Increase stack size
Diffstat (limited to 'testsuites/samples')
-rw-r--r--testsuites/samples/cdtest/system.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/testsuites/samples/cdtest/system.h b/testsuites/samples/cdtest/system.h
index 5354a4c22a..6530682a93 100644
--- a/testsuites/samples/cdtest/system.h
+++ b/testsuites/samples/cdtest/system.h
@@ -35,6 +35,9 @@ rtems_task main_task(
#define CONFIGURE_INIT_TASK_NAME rtems_build_name( 'C', 'T', 'O', 'R' )
#define CONFIGURE_INIT_TASK_ATTRIBUTES RTEMS_FLOATING_POINT
+/* On some platforms _Unwind_RaiseException() needs a lot of stack space */
+#define CONFIGURE_INIT_TASK_STACK_SIZE (4 * RTEMS_MINIMUM_STACK_SIZE)
+
#define CONFIGURE_INITIAL_EXTENSIONS RTEMS_TEST_INITIAL_EXTENSION
#include <rtems/confdefs.h>