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 14:19:16 +0200
commitf363a9ee060443103c14877d6c10a9804b5739f9 (patch)
treea1666a9cc8583f592fdc8b80a6a9102db31a33a1
parent97081085b2c0c0da348bb80a5469973cbc2ae29b (diff)
testsuites/validation/tc-task-construct.c
-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;
}