From 364519d5ce933c80fc2e652083b24a9272bf8fe3 Mon Sep 17 00:00:00 2001 From: dylad Date: Sat, 6 Apr 2024 10:14:10 +0200 Subject: [PATCH 1/2] tests/sys/shell: increase the stack size of periodic thread Otherwise the test seems to be broken with LLVM toolchain Signed-off-by: dylad --- tests/sys/shell/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/sys/shell/main.c b/tests/sys/shell/main.c index 46fec268c9d9..146ab4d7ae0d 100644 --- a/tests/sys/shell/main.c +++ b/tests/sys/shell/main.c @@ -101,7 +101,7 @@ static int print_empty(int argc, char **argv) return 0; } -static char _stack[THREAD_STACKSIZE_TINY]; +static char _stack[THREAD_STACKSIZE_SMALL]; static struct { uint16_t period_ms; uint16_t reps; From 1a69d9c4c17b69f10f8f8cf2bb21d5ca20ccba1e Mon Sep 17 00:00:00 2001 From: dylad Date: Sat, 6 Apr 2024 10:59:29 +0200 Subject: [PATCH 2/2] tests/sys/shell: add boards to BOARD_INSUFFICIENT_MEMORY Signed-off-by: dylad --- tests/sys/shell/Makefile.ci | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/sys/shell/Makefile.ci b/tests/sys/shell/Makefile.ci index 6dd70e79649f..e7e14602991a 100644 --- a/tests/sys/shell/Makefile.ci +++ b/tests/sys/shell/Makefile.ci @@ -1,4 +1,9 @@ BOARD_INSUFFICIENT_MEMORY := \ + arduino-duemilanove \ + arduino-uno \ + arduino-nano \ + atmega328p \ atmega328p-xplained-mini \ atmega8 \ + nucleo-l011k4 \ #