summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2021-09-06 11:27:09 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2021-09-06 11:27:09 +0200
commite497cb7e14b066fc59ac9041dade12d171b650a3 (patch)
treeda804c2cff2e0ba3e26c30e7aa9f9696c88c3746
parente8674514654ba8be7fba3e3800d652fe5d1d7e10 (diff)
testsuites/validation/tc-task-construct.cqual-33
-rw-r--r--testsuites/validation/tc-task-construct.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuites/validation/tc-task-construct.c b/testsuites/validation/tc-task-construct.c
index acd70af867..a809199235 100644
--- a/testsuites/validation/tc-task-construct.c
+++ b/testsuites/validation/tc-task-construct.c
@@ -478,7 +478,7 @@ static volatile _Thread_local int tls_object;
RTEMS_ALIGNED( RTEMS_TASK_STORAGE_ALIGNMENT ) static char task_storage[
RTEMS_TASK_STORAGE_SIZE(
- MAX_TLS_SIZE + RTEMS_MINIMUM_STACK_SIZE,
+ MAX_TLS_SIZE + TEST_MINIMUM_STACK_SIZE,
RTEMS_FLOATING_POINT
)
];
@@ -913,7 +913,7 @@ static void RtemsTaskReqConstruct_Pre_Stack_Prepare(
* While the task stack size of the task configuration is greater than or
* equal to the configured minimum size.
*/
- ctx->stack_size = RTEMS_MINIMUM_STACK_SIZE;
+ ctx->stack_size = TEST_MINIMUM_STACK_SIZE;
break;
}