-
Notifications
You must be signed in to change notification settings - Fork 3
/
Config.uk
118 lines (94 loc) · 2.18 KB
/
Config.uk
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
menuconfig LIBLIBCTEST
bool "Libc-test Unikraft library"
default n
select LIBUKTEST
if LIBLIBCTEST
config LIBLIBCTEST_STRING_TESTS
bool "String tests"
default n
config LIBLIBCTEST_PTHREAD_TESTS
bool "Pthread tests"
default n
depends on !LIBNOLIBC
config LIBLIBCTEST_CONVERSION_TESTS
bool "Convertion tests"
default n
depends on !LIBNOLIBC
config LIBLIBCTEST_REGEX_TESTS
bool "Regex tests"
default n
depends on !LIBNOLIBC
config LIBLIBCTEST_FILE_FOLDER_TESTS
bool "File operation tests"
default n
select LIBVFSCORE
select LIBVFSCORE_AUTOMOUNT_ROOTFS
config LIBLIBCTEST_TIME_TESTS
bool "Time functions tests"
default n
select LIBVFSCORE
select LIBVFSCORE_AUTOMOUNT_ROOTFS
config LIBLIBCTEST_NETWORK_TESTS
bool "Network functions tests"
default n
depends on !LIBNOLIBC
config LIBLIBCTEST_SORT_TESTS
bool "Sorting tests"
default n
depends on !LIBNOLIBC
config LIBLIBCTEST_STRUCTURE_SEARCH_TESTS
bool "Structure search tests"
default n
depends on !LIBNOLIBC
config LIBLIBCTEST_SEMAPHORE_TESTS
bool "Semaphore tests"
default n
depends on !LIBNOLIBC
config LIBLIBCTEST_RANDOM_TESTS
bool "Random tests"
default n
depends on !LIBNOLIBC
config LIBLIBCTEST_CRYPT_TESTS
bool "Crypt algorithms tests"
default n
depends on !LIBNOLIBC
config LIBLIBCTEST_ENV_TESTS
bool "Env tests"
default n
depends on !LIBNOLIBC
config LIBLIBCTEST_MALLOC_TESTS
bool "Malloc tests"
default n
depends on !LIBNOLIBC
config LIBLIBCTEST_TGMATH_TESTS
bool "Tgmath tests"
default n
depends on !LIBNOLIBC
config LIBLIBCTEST_ICONV_TESTS
bool "Iconv tests"
default n
depends on !LIBNOLIBC
config LIBLIBCTEST_UDIV_TESTS
bool "Udiv tests"
default n
config LIBLIBCTEST_MBFUNC_TESTS
bool "Mbfuncs tests"
default n
depends on !LIBNOLIBC
config LIBLIBCTEST_SETJMP_TESTS
bool "Setjmp tests"
default n
depends on !LIBNOLIBC
config LIBLIBCTEST_FPCLASSIFY_TESTS
bool "Fpclassify tests"
default n
depends on !LIBNOLIBC
config LIBLIBCTEST_POSIX_SPAWN_TESTS
bool "Posix spawn tests"
default n
depends on !LIBNOLIBC
config LIBLIBCTEST_ACCESS_TESTS
bool "Access tests"
default n
depends on !LIBNOLIBC
endif