zephyr/tests/Kconfig
Anas Nashif 911be994d1 tests: enable coverage
coverage option was dropped by mistake moving away from IS_TEST.

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
2018-01-09 11:13:08 -05:00

36 lines
814 B
Plaintext

#
# Copyright (c) 2016 Intel Corporation
#
# SPDX-License-Identifier: Apache-2.0
#
menu Testing
source "tests/ztest/Kconfig"
config TEST
bool "Mark project as a test"
default n
select COVERAGE if NATIVE_APPLICATION
help
Mark a project or an application as a test. This will enable a few
test defaults.
config TEST_EXTRA_STACKSIZE
int "Test function thread stack size"
default 0
default 768 if XTENSA
help
Additional stack for tests on some platform where default is not
enough.
config COVERAGE
bool "Create coverage data"
depends on NATIVE_APPLICATION
default n
help
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.
endmenu