Kconfig 998 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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_SMALL_MEM_TC
  7. bool "mem test"
  8. default y
  9. depends on RT_USING_SMALL_MEM
  10. config UTEST_SLAB_TC
  11. bool "slab test"
  12. default n
  13. depends on RT_USING_SLAB
  14. config UTEST_IRQ_TC
  15. bool "IRQ test"
  16. default n
  17. config UTEST_SEMAPHORE_TC
  18. bool "semaphore test"
  19. default n
  20. depends on RT_USING_SEMAPHORE
  21. config UTEST_EVENT_TC
  22. bool "event test"
  23. default n
  24. depends on RT_USING_EVENT
  25. config UTEST_TIMER_TC
  26. bool "timer test"
  27. default n
  28. config UTEST_MESSAGEQUEUE_TC
  29. bool "message queue test"
  30. default n
  31. config UTEST_SIGNAL_TC
  32. bool "signal test"
  33. default n
  34. config UTEST_MUTEX_TC
  35. bool "mutex test"
  36. default n
  37. config UTEST_MAILBOX_TC
  38. bool "mailbox test"
  39. default n
  40. config UTEST_THREAD_TC
  41. bool "thread test"
  42. default n
  43. select RT_USING_TIMER_SOFT
  44. select RT_USING_THREAD
  45. endmenu