added script for Grub2 image creation;
[MuString.git] / tests / Kconfig
blobced1b5254026c25203f81c953b2d85b8da23cbcc
1 menuconfig TEST
2         bool "Make MuString with tests included"
3         default n
5 if TEST
6 config TEST_IGNORE_FAILS
7        bool "Ignore tescase fails"
8        default n
9        help
10          Continue running testcases even if one of testscases fails.
11          If this function is set to 'n', the test framework stops testing
12          after the first fail occures.
14 config TEST_IPC
15        bool "IPC test"
16        default n
18 config TEST_WQ
19        bool "Wait queue test"
20        default n
22 config TEST_SCHEDULER
23        bool "Scheduler test"
24        default n
26 config TEST_USYNC
27        bool "Userspace synchronization test"
28        default n
30 config TEST_SIGNALS
31        bool "Signal subsystem test"
32        default n
34 config TEST_TLSF
35        bool "TLSF memory allocator test"
36        default n
37        select DEBUG_MM
39 config TEST_MAPUNMAP
40        bool "Map/Unmap general test"
41        default n
42        select DEBUG_PTABLE
44 config TEST_VMA
45        bool "Test general VMA functinality"
46        default n
47        select DEBUG_TTREE
49 config TEST_RWSEM
50        bool "Test Read/Write semaphore"
51        default n
53 endif