Kconfig 1022 B

123456789101112131415161718192021222324252627282930313233343536
  1. menu "IDF unit test"
  2. config UNITY_FREERTOS_PRIORITY
  3. int "Priority of Unity test task"
  4. default 5
  5. config UNITY_FREERTOS_CPU
  6. int "CPU to run Unity test task on"
  7. default 0
  8. config UNITY_FREERTOS_STACK_SIZE
  9. int "Stack size of Unity test task, in bytes"
  10. default 8192
  11. config UNITY_WARN_LEAK_LEVEL_GENERAL
  12. int "Leak warning level"
  13. default 255
  14. config UNITY_CRITICAL_LEAK_LEVEL_GENERAL
  15. int "Critical leak"
  16. default 1024
  17. config UNITY_CRITICAL_LEAK_LEVEL_LWIP
  18. int "Critical leak for UT which use LWIP component"
  19. default 4095
  20. config UNITY_IGNORE_PERFORMANCE_TESTS
  21. bool "Ignore performance test results"
  22. default y if IDF_ENV_FPGA
  23. default n
  24. help
  25. If set, performance tests that use TEST_PERFORMANCE_LESS_THAN and
  26. TEST_PERFORMANCE_GREATER_THAN macros will log the performance value
  27. but not fail the test if the threshold is not met.
  28. endmenu