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