aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTamas Ban <tamas.ban@arm.com>2020-01-20 16:37:37 +0000
committerTamas Ban <tamas.ban@arm.com>2020-01-23 13:33:03 +0000
commitf4ffcd40757b16cbdb1bbcfb04311de86271baad (patch)
tree73144962bc6ceb51c8c52a3898bbf18aac967cdf
parent234fe42429e6a814626bb7f7c2dd6a41279154b9 (diff)
downloadtrusted-firmware-m-f4ffcd40757b16cbdb1bbcfb04311de86271baad.tar.gz
App: Increase NS test stack size
Updated QCBOR lib exceeds the current 3KB of stack usage, therefore increase the stack size of test application to 4KB. Change-Id: I378732500d9717febfd53d865bee9ea588dbf352 Signed-off-by: Tamas Ban <tamas.ban@arm.com>
-rw-r--r--app/main_ns.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/main_ns.c b/app/main_ns.c
index ac7275c57f..1a2b8d70f0 100644
--- a/app/main_ns.c
+++ b/app/main_ns.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2017-2019, Arm Limited. All rights reserved.
+ * Copyright (c) 2017-2020, Arm Limited. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*
@@ -62,7 +62,7 @@ extern void * const osRtxUserSVC[1+USER_SVC_COUNT];
* \brief List of RTOS thread attributes
*/
#if defined(TEST_FRAMEWORK_NS) || defined(PSA_API_TEST_NS)
-static uint64_t test_app_stack[(3u * 1024u) / (sizeof(uint64_t))]; /* 3KB */
+static uint64_t test_app_stack[(4u * 1024u) / (sizeof(uint64_t))]; /* 4KB */
static const osThreadAttr_t thread_attr = {
.name = "test_thread",
.stack_mem = test_app_stack,