Kconfig 576 B

12345678910111213141516171819202122232425262728293031323334
  1. menu "Kernel Testcase"
  2. config UTEST_MEMHEAP_TC
  3. bool "memheap stability test"
  4. default y
  5. depends on RT_USING_MEMHEAP
  6. config UTEST_IRQ_TC
  7. bool "IRQ test"
  8. default n
  9. config UTEST_SEMAPHORE_TC
  10. bool "semaphore test"
  11. default n
  12. depends on RT_USING_SEMAPHORE
  13. config UTEST_EVENT_TC
  14. bool "event test"
  15. default n
  16. depends on RT_USING_EVENT
  17. config UTEST_TIMER_TC
  18. bool "timer test"
  19. default n
  20. config UTEST_MESSAGEQUEUE_TC
  21. bool "message queue test"
  22. default n
  23. config UTEST_SIGNAL_TC
  24. bool "signal test"
  25. default n
  26. endmenu