Files
rt-thread/examples/utest/testcases/perf/Kconfig
rcitach 2cb69c8e08 testcase: add system performance testcase (#10452)
* 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
2025-07-16 12:55:54 +08:00

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