Files
ASF_01_sys_sw_arch/1 software design/components/perf_tests/Kconfig
2026-02-01 12:56:05 +01:00

27 lines
554 B
Plaintext

menu "Performance Tests"
config ENABLE_PERF_TESTS
bool "Enable performance tests (CPU, memory, stack)"
default y
help
Enable building and running performance-oriented Unity tests
(CPU load, memory consumption, and stack usage).
if ENABLE_PERF_TESTS
config ENABLE_CPU_LOAD_TEST
bool "Enable CPU load test"
default y
config ENABLE_MEMORY_TEST
bool "Enable memory consumption test"
default y
config ENABLE_STACK_USAGE_TEST
bool "Enable stack usage test"
default y
endif # ENABLE_PERF_TESTS
endmenu