6091021e83
New unity component can be used for testing other applications. Upstream version of Unity is included as a submodule. Utilities specific to ESP-IDF unit tests (partitions, leak checking setup/teardown functions, etc) are kept only in unit-test-app. Kconfig options are added to allow disabling certain Unity features.
15 lines
278 B
Text
15 lines
278 B
Text
menu "IDF unit test"
|
|
|
|
config UNITY_FREERTOS_PRIORITY
|
|
int "Priority of Unity test task"
|
|
default 5
|
|
|
|
config UNITY_FREERTOS_CPU
|
|
int "CPU to run Unity test task on"
|
|
default 0
|
|
|
|
config UNITY_FREERTOS_STACK_SIZE
|
|
int "Stack size of Unity test task, in bytes"
|
|
default 8192
|
|
|
|
endmenu
|