mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-10-14 03:10:07 +08:00

Also: - Add "RT_" prefix for the UTEST config options. - Follow the naming rules to update the case name. Signed-off-by: Chen Wang <unicorn_wang@outlook.com>
30 lines
809 B
Plaintext
30 lines
809 B
Plaintext
menu "RT-Thread Utestcases"
|
|
|
|
config RT_USING_UTESTCASES
|
|
bool "RT-Thread Utestcases"
|
|
default n
|
|
select RT_USING_UTEST
|
|
|
|
if RT_USING_UTESTCASES
|
|
|
|
rsource "components/utilities/utest/utest/Kconfig"
|
|
rsource "src/utest/Kconfig"
|
|
rsource "examples/utest/testcases/cpp11/Kconfig"
|
|
rsource "examples/utest/testcases/drivers/ipc/Kconfig"
|
|
rsource "examples/utest/testcases/posix/Kconfig"
|
|
rsource "examples/utest/testcases/mm/Kconfig"
|
|
rsource "examples/utest/testcases/tmpfs/Kconfig"
|
|
|
|
rsource "src/klibc/utest/Kconfig"
|
|
|
|
rsource "components/drivers/core/utest/Kconfig"
|
|
rsource "components/drivers/audio/utest/Kconfig"
|
|
rsource "components/drivers/serial/utest/Kconfig"
|
|
rsource "components/drivers/smp_call/utest/Kconfig"
|
|
rsource "components/dfs/utest/Kconfig"
|
|
rsource "components/net/utest/Kconfig"
|
|
|
|
endif
|
|
|
|
endmenu
|