Kconfig 698 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. config UTEST_MUTEX_TC
  27. bool "mutex test"
  28. default n
  29. config UTEST_MAILBOX_TC
  30. bool "mailbox test"
  31. default n
  32. endmenu