27 lines
554 B
Plaintext
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
|