mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-10-14 03:10:07 +08:00

* add sys pref frameworks * add context switch test code * add irq latency test code * add thread sem test code * add thread event test code * add thread mbox test code * add thread mq test code * Adding a Test Documentation Note * Modification of text description
25 lines
618 B
Plaintext
25 lines
618 B
Plaintext
menu "SyStem Performance Testcase"
|
|
|
|
config UTEST_SYS_PERF_TC
|
|
bool "SyStem Performance test"
|
|
default n
|
|
|
|
config UTEST_SYS_PERF_TC_COUNT
|
|
int "Test the number of cycles"
|
|
default 1000
|
|
depends on UTEST_SYS_PERF_TC
|
|
|
|
config UTEST_HWTIMER_DEV_NAME
|
|
string "Hardware timer device name"
|
|
default "timer0"
|
|
depends on RT_USING_HWTIMER && UTEST_SYS_PERF_TC
|
|
help
|
|
Specify the hardware timer device name used for context switch testing (e.g., timer0).
|
|
|
|
config UTEST_SYS_IRQ_LATENCY
|
|
bool "SyStem IRQ LATENCY test"
|
|
default n
|
|
depends on RT_USING_HWTIMER && UTEST_SYS_PERF_TC
|
|
|
|
endmenu
|