locking/lockdep: Fix print_collision() unused warning
[linux/fpc-iii.git] / tools / build / feature / test-all.c
blobe499a36c1e4a9e21e9c355309b53a7dc5901664a
1 /*
2 * test-all.c: Try to build all the main testcases at once.
4 * A well-configured system will have all the prereqs installed, so we can speed
5 * up auto-detection on such systems.
6 */
8 /*
9 * Quirk: Python and Perl headers cannot be in arbitrary places, so keep
10 * these 3 testcases at the top:
12 #define main main_test_libpython
13 # include "test-libpython.c"
14 #undef main
16 #define main main_test_libpython_version
17 # include "test-libpython-version.c"
18 #undef main
20 #define main main_test_libperl
21 # include "test-libperl.c"
22 #undef main
24 #define main main_test_hello
25 # include "test-hello.c"
26 #undef main
28 #define main main_test_libelf
29 # include "test-libelf.c"
30 #undef main
32 #define main main_test_libelf_mmap
33 # include "test-libelf-mmap.c"
34 #undef main
36 #define main main_test_glibc
37 # include "test-glibc.c"
38 #undef main
40 #define main main_test_dwarf
41 # include "test-dwarf.c"
42 #undef main
44 #define main main_test_libelf_getphdrnum
45 # include "test-libelf-getphdrnum.c"
46 #undef main
48 #define main main_test_libunwind
49 # include "test-libunwind.c"
50 #undef main
52 #define main main_test_libaudit
53 # include "test-libaudit.c"
54 #undef main
56 #define main main_test_libslang
57 # include "test-libslang.c"
58 #undef main
60 #define main main_test_gtk2
61 # include "test-gtk2.c"
62 #undef main
64 #define main main_test_gtk2_infobar
65 # include "test-gtk2-infobar.c"
66 #undef main
68 #define main main_test_libbfd
69 # include "test-libbfd.c"
70 #undef main
72 #define main main_test_backtrace
73 # include "test-backtrace.c"
74 #undef main
76 #define main main_test_libnuma
77 # include "test-libnuma.c"
78 #undef main
80 #define main main_test_numa_num_possible_cpus
81 # include "test-numa_num_possible_cpus.c"
82 #undef main
84 #define main main_test_timerfd
85 # include "test-timerfd.c"
86 #undef main
88 #define main main_test_stackprotector_all
89 # include "test-stackprotector-all.c"
90 #undef main
92 #define main main_test_libdw_dwarf_unwind
93 # include "test-libdw-dwarf-unwind.c"
94 #undef main
96 #define main main_test_sync_compare_and_swap
97 # include "test-sync-compare-and-swap.c"
98 #undef main
100 #define main main_test_zlib
101 # include "test-zlib.c"
102 #undef main
104 #define main main_test_pthread_attr_setaffinity_np
105 # include "test-pthread-attr-setaffinity-np.c"
106 #undef main
108 # if 0
110 * Disable libbabeltrace check for test-all, because the requested
111 * library version is not released yet in most distributions. Will
112 * reenable later.
115 #define main main_test_libbabeltrace
116 # include "test-libbabeltrace.c"
117 #undef main
118 #endif
120 #define main main_test_lzma
121 # include "test-lzma.c"
122 #undef main
124 #define main main_test_get_cpuid
125 # include "test-get_cpuid.c"
126 #undef main
128 #define main main_test_bpf
129 # include "test-bpf.c"
130 #undef main
132 #define main main_test_libcrypto
133 # include "test-libcrypto.c"
134 #undef main
136 int main(int argc, char *argv[])
138 main_test_libpython();
139 main_test_libpython_version();
140 main_test_libperl();
141 main_test_hello();
142 main_test_libelf();
143 main_test_libelf_mmap();
144 main_test_glibc();
145 main_test_dwarf();
146 main_test_libelf_getphdrnum();
147 main_test_libunwind();
148 main_test_libaudit();
149 main_test_libslang();
150 main_test_gtk2(argc, argv);
151 main_test_gtk2_infobar(argc, argv);
152 main_test_libbfd();
153 main_test_backtrace();
154 main_test_libnuma();
155 main_test_numa_num_possible_cpus();
156 main_test_timerfd();
157 main_test_stackprotector_all();
158 main_test_libdw_dwarf_unwind();
159 main_test_sync_compare_and_swap(argc, argv);
160 main_test_zlib();
161 main_test_pthread_attr_setaffinity_np();
162 main_test_lzma();
163 main_test_get_cpuid();
164 main_test_bpf();
165 main_test_libcrypto();
167 return 0;