From b65ac5b9e012ab83bcaae4a8077d50cd7bb31a5a Mon Sep 17 00:00:00 2001 From: Jordan Yates Date: Wed, 19 Jul 2023 21:38:49 +1000 Subject: [PATCH] tests: misc: check_init_priorities: force two stage linking Add `CONFIG_DEVICE_DEPS` to force two stage linking, otherwise the following check means the test never runs: ``` if (TARGET zephyr_pre1) add_dependencies(zephyr_pre1 check_init_priorities_output) endif() ``` Signed-off-by: Jordan Yates --- tests/misc/check_init_priorities/prj.conf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/misc/check_init_priorities/prj.conf b/tests/misc/check_init_priorities/prj.conf index b7db25411d0..bd094fca874 100644 --- a/tests/misc/check_init_priorities/prj.conf +++ b/tests/misc/check_init_priorities/prj.conf @@ -1 +1,2 @@ -# Empty +# Required to force 2 stage linking +CONFIG_DEVICE_DEPS=y