From 86a60475a45145b57f62a70c318bc7bebab380c3 Mon Sep 17 00:00:00 2001 From: Carlo Caione Date: Mon, 18 Nov 2019 14:10:55 +0000 Subject: [PATCH] arch: arm64: Fix logging test We need a slightly bigger stack to be able to successfully pass the logging test. Fix the stack size and enable back the test. Signed-off-by: Carlo Caione --- boards/arm/qemu_cortex_a53/qemu_cortex_a53.yaml | 1 - subsys/logging/Kconfig | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/boards/arm/qemu_cortex_a53/qemu_cortex_a53.yaml b/boards/arm/qemu_cortex_a53/qemu_cortex_a53.yaml index 5fb8da7fd85..b48646ae7f6 100644 --- a/boards/arm/qemu_cortex_a53/qemu_cortex_a53.yaml +++ b/boards/arm/qemu_cortex_a53/qemu_cortex_a53.yaml @@ -13,7 +13,6 @@ testing: - console - drivers - interrupt - - logging - net - nfc - shell diff --git a/subsys/logging/Kconfig b/subsys/logging/Kconfig index 313cd77c0a8..ccb71e84ed4 100644 --- a/subsys/logging/Kconfig +++ b/subsys/logging/Kconfig @@ -214,6 +214,7 @@ config LOG_PROCESS_THREAD_STACK_SIZE default 1024 if NO_OPTIMIZATIONS default 1024 if XTENSA default 4096 if (X86 && X86_64) + default 4096 if ARM64 default 768 help Set the internal stack size for log processing thread.