summaryrefslogtreecommitdiff
path: root/test/Kconfig
blob: 3f1c3b699d91b9005307d40a2738b3776c8a9a40 (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
menuconfig TEST_MODULE
	bool "Test module"
	default n
	---help---
	  Run a test module instead of booting the system.

if TEST_MODULE

choice
	prompt "Select test module"

config TEST_MODULE_ATOMIC
	bool "atomic"

if TEST_MODULE_ATOMIC

config TEST_MODULE_ATOMIC_64
	bool "Force 64-bit atomic operations"
	default n
	---help---
	  Force atomic operations to apply to 64-bit integers, even on 32-bit
	  targets. Some targets may not support 64-bit atomic operations
	  at all.

endif

config TEST_MODULE_BULLETIN
	bool "bulletin"

config TEST_MODULE_MUTEX
	bool "mutex"
	select MUTEX_DEBUG

config TEST_MODULE_MUTEX_PI
	bool "mutex_pi"

config TEST_MODULE_PMAP_UPDATE_MP
	bool "pmap_update_mp"

config TEST_MODULE_RCU_DEFER
	bool "rcu_defer"

config TEST_MODULE_SREF_DIRTY_ZEROES
	bool "sref_dirty_zeroes"

config TEST_MODULE_SREF_NOREF
	bool "sref_noref"

config TEST_MODULE_SREF_WEAKREF
	bool "sref_weakref"

config TEST_MODULE_VM_PAGE_FILL
	bool "vm_page_fill"

config TEST_MODULE_XCALL
	bool "xcall"

endchoice

endif