test: subsys: cpp: Fix stack overflow on Armv8R-64

After doing some tests on Armv8R aarch64 board, the used stack memory
exceeds the stack size for about 64 bytes. Extending ZTEST_STACKSIZE
to 5120 can fix it.

Signed-off-by: Jaxson Han <jaxson.han@arm.com>
This commit is contained in:
Jaxson Han 2021-08-06 15:58:07 +08:00 committed by Christopher Friedt
commit a11721115e

View file

@ -2,4 +2,4 @@ CONFIG_CPLUSPLUS=y
CONFIG_LIB_CPLUSPLUS=y
CONFIG_STD_CPP17=y
CONFIG_ZTEST=y
CONFIG_ZTEST_STACKSIZE=4096
CONFIG_ZTEST_STACKSIZE=5120