:orphan: .. title:: TEST_ENABLE_USERSPACE .. option:: CONFIG_TEST_ENABLE_USERSPACE *(No prompt -- not directly user assignable.)* Type: ``bool`` Help ==== This hidden option implements the TEST_USERSPACE logic. It turns on USERSPACE when CONFIG_ARCH_HAS_USERSPACE is set and the test case itself indicates that it exercises user mode via CONFIG_TEST_USERSPACE. Direct dependencies =================== \ :option:`TEST_USERSPACE ` && \ :option:`ARCH_HAS_USERSPACE ` *(Includes any dependencies from ifs and menus.)* Default ======= - y Symbols selected by this symbol =============================== - \ :option:`USERSPACE ` - \ :option:`DYNAMIC_OBJECTS ` Kconfig definition ================== .. highlight:: kconfig At ``subsys/testsuite/Kconfig:90`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:34`` → ``subsys/Kconfig:55`` Menu path: (Top) → Sub Systems and OS Services → Testing .. parsed-literal:: config TEST_ENABLE_USERSPACE bool default y select \ :option:`USERSPACE ` select \ :option:`DYNAMIC_OBJECTS ` depends on \ :option:`TEST_USERSPACE ` && \ :option:`ARCH_HAS_USERSPACE ` help This hidden option implements the TEST_USERSPACE logic. It turns on USERSPACE when CONFIG_ARCH_HAS_USERSPACE is set and the test case itself indicates that it exercises user mode via CONFIG_TEST_USERSPACE. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*