| # Copyright (c) 2016 Intel Corporation |
| # SPDX-License-Identifier: Apache-2.0 |
| source "tests/ztest/Kconfig" |
| bool "Mark project as a test" |
| select COVERAGE if NATIVE_APPLICATION |
| Mark a project or an application as a test. This will enable a few |
| config TEST_EXTRA_STACKSIZE |
| int "Test function extra thread stack size" |
| Additional stack for tests on some platform where default is not |
| bool "Create coverage data" |
| depends on NATIVE_APPLICATION |
| This option will build your application with the -coverage option |
| which will generate data that can be used to create coverage reports. |
| Currently this is fully supported only on the native POSIX port. |
| bool "Enable userspace if available" |
| depends on ARCH_HAS_USERSPACE |
| select APPLICATION_MEMORY |
| This option will help test the userspace mode. This can be enabled |
| only when CONFIG_HAS_USERSPACE is set. |