Kconfig 618 B

123456789101112131415161718192021222324
  1. menu "SyStem Performance Testcase"
  2. config UTEST_SYS_PERF_TC
  3. bool "SyStem Performance test"
  4. default n
  5. config UTEST_SYS_PERF_TC_COUNT
  6. int "Test the number of cycles"
  7. default 1000
  8. depends on UTEST_SYS_PERF_TC
  9. config UTEST_HWTIMER_DEV_NAME
  10. string "Hardware timer device name"
  11. default "timer0"
  12. depends on RT_USING_HWTIMER && UTEST_SYS_PERF_TC
  13. help
  14. Specify the hardware timer device name used for context switch testing (e.g., timer0).
  15. config UTEST_SYS_IRQ_LATENCY
  16. bool "SyStem IRQ LATENCY test"
  17. default n
  18. depends on RT_USING_HWTIMER && UTEST_SYS_PERF_TC
  19. endmenu