From 206e76236b254eeebb7c5220d6cb7a732e4f14f3 Mon Sep 17 00:00:00 2001 From: Rubin Gerritsen Date: Thu, 16 Jan 2025 14:20:00 +0100 Subject: [PATCH] tests: Make ZTEST_MULTICORE_DEFAULT_SETTINGS depend on ZTEST The generated .config for a sample application should not contain CONFIG_ZTEST_MULTICORE_DEFAULT_SETTINGS=y unless ZTEST is enabled. Signed-off-by: Rubin Gerritsen --- tests/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/Kconfig b/tests/Kconfig index ba9d6e70d892..3197bfc21179 100644 --- a/tests/Kconfig +++ b/tests/Kconfig @@ -8,6 +8,7 @@ menu "Test" config ZTEST_MULTICORE_DEFAULT_SETTINGS bool "Implement default image for multicore boards" + depends on ZTEST default y rsource "unity/Kconfig"