From 22f882d33527d2024cf6f9a5bc1b3cfc4320e642 Mon Sep 17 00:00:00 2001 From: Marian Buschsieweke Date: Tue, 22 Nov 2022 18:55:19 +0100 Subject: [PATCH] tests/pkg_utensor: increase main threads stack size The MPU based stack guard is very unpleased by the stack overflow happening during the test. The increase in stack size makes the MPU stack guard happy again. --- tests/pkg_utensor/Makefile | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/tests/pkg_utensor/Makefile b/tests/pkg_utensor/Makefile index 1daff362826e..b7960fc77778 100644 --- a/tests/pkg_utensor/Makefile +++ b/tests/pkg_utensor/Makefile @@ -11,10 +11,4 @@ EXTERNAL_MODULE_DIRS += external_modules include $(RIOTBASE)/Makefile.include -# The application requires a little more stacksize on ARM when building with -# LLVM -ifneq (,$(filter arch_arm,$(FEATURES_USED))) - ifeq (llvm,$(TOOLCHAIN)) - CFLAGS += -DTHREAD_STACKSIZE_MAIN=2048 - endif -endif +CFLAGS += -DTHREAD_STACKSIZE_MAIN=THREAD_STACKSIZE_LARGE