tests: coverage: fix test cases failed with code coverage in mps2_an385

This only fix several test cases failed while running code coverage
report inmps2_an385 platform. Enlarge the stack size for which failed
due to MPU fault of stack overflow.

Signed-off-by: Enjia Mai <enjiax.mai@intel.com>
This commit is contained in:
Enjia Mai 2021-03-06 00:36:03 +08:00 committed by Anas Nashif
commit e86b6b4a4f

View file

@ -44,4 +44,23 @@ config I2C_SBCON
config ZTEST_STACKSIZE
default 4096 if ZTEST
if COVERAGE
config MAIN_STACK_SIZE
default 4096
config IDLE_STACK_SIZE
default 4096
config PRIVILEGED_STACK_SIZE
default 4096
config ISR_STACK_SIZE
default 4096
config TEST_EXTRA_STACKSIZE
default 4096
endif # COVERAGE
endif