From 98ecf25873cd0cff481f8849a60da0ba1b1e4850 Mon Sep 17 00:00:00 2001 From: Fabio Baltieri Date: Tue, 3 Dec 2024 15:42:35 +0000 Subject: [PATCH] tests: threads_ext: move min_flash and min_ram parameters to test level One of the tests is failing since it was split out in 1a633609a0d triggering an assertion: ASSERTION FAIL [((((size_t)(16)) << 10) - (((uintptr_t) (&_end)) - 0x20000000)) >= 8192] @ WEST_TOPDIR/zephyr/lib/libc/newlib/libc-hooks.c:139 Fix it by making the min_flash and min_ram parameters up to overall test level. Signed-off-by: Chris Friedt Signed-off-by: Fabio Baltieri --- tests/posix/threads_ext/testcase.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/posix/threads_ext/testcase.yaml b/tests/posix/threads_ext/testcase.yaml index b8e1966a32b..c1387f17840 100644 --- a/tests/posix/threads_ext/testcase.yaml +++ b/tests/posix/threads_ext/testcase.yaml @@ -7,10 +7,10 @@ common: platform_key: - arch - simulation + min_flash: 64 + min_ram: 32 tests: - portability.posix.threads_ext: - min_flash: 64 - min_ram: 32 + portability.posix.threads_ext: {} portability.posix.threads_ext.minimal: extra_configs: - CONFIG_MINIMAL_LIBC=y