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