summaryrefslogtreecommitdiffstats
path: root/rules/rt-tests.in
blob: e72b795700b3df5278c8b77e7bb8a7c8125337e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
## SECTION=test_suites

menuconfig RT_TESTS
	tristate
	select LIBC_PTHREAD
	select LIBC_RT
	select LIBC_DL
	select GCCLIBS_GCC_S if RT_TESTS_RT_MIGRATE_TEST
	prompt "rt-tests                      "
	help
	  Test programs for rt kernels

	  rt-tests contains a set of programs that test and measure
	  various components of "realtime" kernel behavior, such as
	  timer latency, signal latency and the functioning of
	  priority-inheritance mutexes.

if RT_TESTS

config RT_TESTS_CYCLICTEST
	bool
	prompt "cyclictest"
	help
	  cyclictest is a benchmark program that can be used to find
	  worst case realtime latencies.

config RT_TESTS_PIP
	bool
	prompt "pip"
	help
	  priority inheritance for processes

config RT_TESTS_PI_STRESS
	bool
	prompt "pi_stress"
	help
	  priority inheritance stress test

config RT_TESTS_PTSEMATEST
	bool
	prompt "ptsematest"
	help
	  signal test program

config RT_TESTS_RT_MIGRATE_TEST
	bool
	prompt "rt-migrate-test"

config RT_TESTS_SENDME
	bool
	prompt "sendme"

config RT_TESTS_SIGNALTEST
	bool
	prompt "signaltest"

config RT_TESTS_SIGWAITTEST
	bool
	prompt "sigwaittest"

config RT_TESTS_SVSEMATEST
	bool
	prompt "svsematest"

endif