:orphan: .. title:: CONFIG_ZTEST_THREAD_PRIORITY .. kconfig:: CONFIG_ZTEST_THREAD_PRIORITY CONFIG_ZTEST_THREAD_PRIORITY ############################ *Testing thread priority* Type: ``int`` Help ==== .. code-block:: none Set priority of the testing thread. Default is -1 (cooperative). Direct dependencies =================== \ :kconfig:`ZTEST ` *(Includes any dependencies from ifs and menus.)* Defaults ======== - -2 if !\ :kconfig:`PREEMPT_ENABLED ` - -1 Kconfig definition ================== At ``/testsuite/ztest/Kconfig:34`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:44`` → ``/Kconfig:61`` → ``/testsuite/Kconfig:6`` Menu path: (Top) → Sub Systems and OS Services → Testing → Zephyr testing framework .. code-block:: kconfig config ZTEST_THREAD_PRIORITY int "Testing thread priority" default -2 if !PREEMPT_ENABLED default -1 depends on ZTEST help Set priority of the testing thread. Default is -1 (cooperative). *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*