This commit is contained in:
2026-01-19 16:19:41 +01:00
commit edd3e96591
301 changed files with 36763 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
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