:orphan: .. title:: ZTEST_TC_UTIL_USER_OVERRIDE .. option:: CONFIG_ZTEST_TC_UTIL_USER_OVERRIDE *Override tc_util.h* Type: ``bool`` Help ==== Enable overriding defines in tc_util.h. If True the user should provide tc_util_user_override.h in Zephyr's include path, e.g. by adding zephyr_include_directories(project PRIVATE my_folder) to a project's CMakeLists.txt. The override header may now #define the various macros and strings in tc_util.h which are surrounded by #ifndef ... #endif blocks. Direct dependencies =================== \ :option:`ZTEST ` *(Includes any dependencies from ifs and menus.)* Defaults ======== No defaults. Implicitly defaults to ``n``. Kconfig definition ================== .. highlight:: kconfig At ``subsys/testsuite/ztest/Kconfig:40`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:34`` → ``subsys/Kconfig:55`` → ``subsys/testsuite/Kconfig:6`` Menu path: (Top) → Sub Systems and OS Services → Testing → Zephyr testing framework .. parsed-literal:: config ZTEST_TC_UTIL_USER_OVERRIDE bool "Override tc_util.h" depends on \ :option:`ZTEST ` help Enable overriding defines in tc_util.h. If True the user should provide tc_util_user_override.h in Zephyr's include path, e.g. by adding zephyr_include_directories(project PRIVATE my_folder) to a project's CMakeLists.txt. The override header may now #define the various macros and strings in tc_util.h which are surrounded by #ifndef ... #endif blocks. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*