summaryrefslogtreecommitdiffstats
path: root/spec/rtems/task/req
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2021-09-06 12:30:22 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2021-09-06 13:32:38 +0200
commit43004fae4951da0af58ebe8de898579942384b45 (patch)
treea8c54a766a36c1961274b87e8b140dd33135e0c6 /spec/rtems/task/req
parentmodules: Update rtems-docs (diff)
downloadrtems-central-43004fae4951da0af58ebe8de898579942384b45.tar.bz2
spec: Use TEST_MINIMUM_STACK_SIZE
Diffstat (limited to 'spec/rtems/task/req')
-rw-r--r--spec/rtems/task/req/construct.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/rtems/task/req/construct.yml b/spec/rtems/task/req/construct.yml
index f3f1be49..9d2f0607 100644
--- a/spec/rtems/task/req/construct.yml
+++ b/spec/rtems/task/req/construct.yml
@@ -396,7 +396,7 @@ pre-conditions:
states:
- name: Enough
test-code: |
- ctx->stack_size = RTEMS_MINIMUM_STACK_SIZE;
+ ctx->stack_size = TEST_MINIMUM_STACK_SIZE;
text: |
While the task stack size of the task configuration is greater than or
equal to the configured minimum size.
@@ -687,7 +687,7 @@ test-support: |
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
)
];