From 36c09442d9652efd78b13aa9089b1a5c8e055a6d Mon Sep 17 00:00:00 2001 From: Flavio Santes Date: Thu, 27 Oct 2016 09:50:17 -0500 Subject: [PATCH] test/crypto: Fix RAM overflow error in ISSM According to feedback received in ZEP-1130, decreasing the stack size in the prj.mdef file solves the RAM overflow issue reported by ISSM. Jira: ZEP-1130 Change-Id: I761531e535a9e54ccd024b397d5d92d7666be817 Signed-off-by: Flavio Santes --- tests/crypto/test_hmac_prng/prj.mdef | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/crypto/test_hmac_prng/prj.mdef b/tests/crypto/test_hmac_prng/prj.mdef index 6428ab03900..4ded1cecf5c 100644 --- a/tests/crypto/test_hmac_prng/prj.mdef +++ b/tests/crypto/test_hmac_prng/prj.mdef @@ -2,4 +2,4 @@ % TASK NAME PRIO ENTRY STACK GROUPS % ==================================================== - TASK tStartTask 5 main 51200 [EXE] + TASK tStartTask 5 main 41200 [EXE]