From 01281ed8afdea50cd2dad9df9bdfffa1183e8669 Mon Sep 17 00:00:00 2001 From: Anas Nashif Date: Mon, 9 Oct 2023 23:32:38 +0000 Subject: [PATCH] ztest: enable ZTEST_NEW_API by default Enable by default so we can remove kconfigs from tests/samples and keep things working as before. Signed-off-by: Anas Nashif --- subsys/testsuite/ztest/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/subsys/testsuite/ztest/Kconfig b/subsys/testsuite/ztest/Kconfig index d48961cc844..91c942b7a5c 100644 --- a/subsys/testsuite/ztest/Kconfig +++ b/subsys/testsuite/ztest/Kconfig @@ -12,6 +12,7 @@ if ZTEST config ZTEST_NEW_API bool "Use the new Ztest API" + default y help Enables the new Ztest APIs for creating suites and unit tests in separate compilation units as well as the new 'rules' API.