-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglue.c
448 lines (401 loc) · 8.82 KB
/
glue.c
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
#include <string.h>
#include <stdlib.h>
#include <fcntl.h>
#include <sys/stat.h>
#include <stdio.h>
#include <assert.h>
#include <uk/config.h>
#include <uk/essentials.h>
#include <test_suite_glue.h>
int *__errno_location(void)
{
return NULL;
}
unsigned short int **__ctype_b_loc(void)
{
return NULL;
}
void setprogname(const char *progname)
{
strncpy(program_invocation_short_name, progname, 255);
}
const char *getprogname(void)
{
const char *name;
name = program_invocation_name;
assert(name);
return name;
}
int stat64(const char *path, struct stat *buf)
{
return stat(path, buf);
}
/* No varargs support */
int open64(const char *pathname, int oflag, ...)
{
return open(pathname, oflag);
}
/* No varargs support */
int fcntl64(int fd, int cmd, ...)
{
return fcntl(fd, cmd);
}
FILE *fopen64(const char *filename, const char *type)
{
return fopen(filename, type);
}
int mkstemp64(char *template)
{
return mkstemp(template);
}
/* Can run all the tests, or just some of them based on preferances */
int libp11kit_test_main(int argc, char *argv[])
{
int test_counter = 0;
int error_counter = 0;
int rc;
#if CONFIG_ALL_TEST_CASES || CONFIG_TESTS_ARGV
test_counter++;
printf("Running test_argv ....................\n");
rc = test_argv_main(argc, argv);
if (rc == 0) {
printf("PASS\n");
} else {
printf("FAIL\n");
error_counter++;
}
#endif
#if CONFIG_ALL_TEST_CASES || CONFIG_TESTS_ARRAY
test_counter++;
printf("Running test_array ....................\n");
rc = test_array_main(argc, argv);
if (rc == 0) {
printf("PASS\n");
} else {
printf("FAIL\n");
error_counter++;
}
#endif
#if CONFIG_ALL_TEST_CASES || CONFIG_TESTS_ATTRS
test_counter++;
printf("Running test_attrs ....................\n");
rc = test_attrs_main(argc, argv);
if (rc == 0) {
printf("PASS\n");
} else {
printf("FAIL\n");
error_counter++;
}
#endif
#if CONFIG_ALL_TEST_CASES || CONFIG_TESTS_BUFFER
test_counter++;
printf("Running test_buffer ....................\n");
rc = test_buffer_main(argc, argv);
if (rc == 0) {
printf("PASS\n");
} else {
printf("FAIL\n");
error_counter++;
}
#endif
#if CONFIG_ALL_TEST_CASES || CONFIG_TESTS_COMPAT
test_counter++;
printf("Running test_compat ....................\n");
rc = test_compat_main(argc, argv);
if (rc == 0) {
printf("PASS\n");
} else {
printf("FAIL\n");
error_counter++;
}
#endif
#if CONFIG_ALL_TEST_CASES || CONFIG_TESTS_CONSTANTS
test_counter++;
printf("Running test_constants ....................\n");
rc = test_constants_main(argc, argv);
if (rc == 0) {
printf("PASS\n");
} else {
printf("FAIL\n");
error_counter++;
}
#endif
#if CONFIG_ALL_TEST_CASES || CONFIG_TESTS_DEPRECATED
test_counter++;
printf("Running test_deprecated ....................\n");
rc = test_deprecated_main(argc, argv);
if (rc == 0) {
printf("PASS\n");
} else {
printf("FAIL\n");
error_counter++;
}
#endif
#if CONFIG_ALL_TEST_CASES || CONFIG_TESTS_DICT
test_counter++;
printf("Running test_dict ....................\n");
rc = test_dict_main(argc, argv);
if (rc == 0) {
printf("PASS\n");
} else {
printf("FAIL\n");
error_counter++;
}
#endif
#if CONFIG_ALL_TEST_CASES || CONFIG_TESTS_FILTER
test_counter++;
printf("Running test_filter ....................\n");
rc = test_filter_main(argc, argv);
if (rc == 0) {
printf("PASS\n");
} else {
printf("FAIL\n");
error_counter++;
}
#endif
#if CONFIG_ALL_TEST_CASES || CONFIG_TESTS_HASH
test_counter++;
printf("Running test_hash ....................\n");
rc = test_hash_main(argc, argv);
if (rc == 0) {
printf("PASS\n");
} else {
printf("FAIL\n");
error_counter++;
}
#endif
#if CONFIG_ALL_TEST_CASES || CONFIG_TESTS_INIT
test_counter++;
printf("Running test_init ....................\n");
rc = test_init_main(argc, argv);
if (rc == 0) {
printf("PASS\n");
} else {
printf("FAIL\n");
error_counter++;
}
#endif
#if CONFIG_ALL_TEST_CASES || CONFIG_TESTS_ITER
test_counter++;
printf("Running test_iter ....................\n");
rc = test_iter_main(argc, argv);
if (rc == 0) {
printf("PASS\n");
} else {
printf("FAIL\n");
error_counter++;
}
#endif
#if CONFIG_ALL_TEST_CASES || CONFIG_TESTS_LEXER
test_counter++;
printf("Running test_lexer ....................\n");
rc = test_lexer_main(argc, argv);
if (rc == 0) {
printf("PASS\n");
} else {
printf("FAIL\n");
error_counter++;
}
#endif
#if CONFIG_ALL_TEST_CASES || CONFIG_TESTS_LOG
test_counter++;
printf("Running test_log ....................\n");
rc = test_log_main(argc, argv);
if (rc == 0) {
printf("PASS\n");
} else {
printf("FAIL\n");
error_counter++;
}
#endif
#if CONFIG_ALL_TEST_CASES || CONFIG_TESTS_MANAGED
test_counter++;
printf("Running test_managed ....................\n");
rc = test_managed_main(argc, argv);
if (rc == 0) {
printf("PASS\n");
} else {
printf("FAIL\n");
error_counter++;
}
#endif
#if CONFIG_ALL_TEST_CASES || CONFIG_TESTS_MESSAGE
test_counter++;
printf("Running test_message ....................\n");
rc = test_message_main(argc, argv);
if (rc == 0) {
printf("PASS\n");
} else {
printf("FAIL\n");
error_counter++;
}
#endif
#if CONFIG_ALL_TEST_CASES || CONFIG_TESTS_MODULES
test_counter++;
printf("Running test_modules ....................\n");
rc = test_modules_main(argc, argv);
if (rc == 0) {
printf("PASS\n");
} else {
printf("FAIL\n");
error_counter++;
}
#endif
#if CONFIG_ALL_TEST_CASES || CONFIG_TESTS_PATH
test_counter++;
printf("Running test_path ....................\n");
rc = test_path_main(argc, argv);
if (rc == 0) {
printf("PASS\n");
} else {
printf("FAIL\n");
error_counter++;
}
#endif
#if CONFIG_ALL_TEST_CASES || CONFIG_TESTS_PIN
test_counter++;
printf("Running test_pin ....................\n");
rc = test_pin_main(argc, argv);
if (rc == 0) {
printf("PASS\n");
} else {
printf("FAIL\n");
error_counter++;
}
#endif
#if CONFIG_ALL_TEST_CASES || CONFIG_TESTS_PROGNAME
test_counter++;
printf("Running test_progname ....................\n");
rc = test_progname_main(argc, argv);
if (rc == 0) {
printf("PASS\n");
} else {
printf("FAIL\n");
error_counter++;
}
#endif
#if CONFIG_ALL_TEST_CASES || CONFIG_TESTS_PROXY
test_counter++;
printf("Running test_proxy ....................\n");
rc = test_proxy_main(argc, argv);
if (rc == 0) {
printf("PASS\n");
} else {
printf("FAIL\n");
error_counter++;
}
#endif
#if CONFIG_ALL_TEST_CASES || CONFIG_TESTS_RPC
test_counter++;
printf("Running test_rpc ....................\n");
rc = test_rpc_main(argc, argv);
if (rc == 0) {
printf("PASS\n");
} else {
printf("FAIL\n");
error_counter++;
}
#endif
#if CONFIG_ALL_TEST_CASES || CONFIG_TESTS_RUNTIME
test_counter++;
printf("Running test_runtime ....................\n");
rc = test_runtime_main(argc, argv);
if (rc == 0) {
printf("PASS\n");
} else {
printf("FAIL\n");
error_counter++;
}
#endif
#if CONFIG_ALL_TEST_CASES || CONFIG_TESTS_SERVER
test_counter++;
printf("Running test_server ....................\n");
rc = test_server_main(argc, argv);
if (rc == 0) {
printf("PASS\n");
} else {
printf("FAIL\n");
error_counter++;
}
#endif
#if CONFIG_ALL_TEST_CASES || CONFIG_TESTS_TESTS
test_counter++;
printf("Running test_tests ....................\n");
rc = test_tests_main(argc, argv);
if (rc == 0) {
printf("PASS\n");
} else {
printf("FAIL\n");
error_counter++;
}
#endif
#if CONFIG_ALL_TEST_CASES || CONFIG_TESTS_TRANSPORT
test_counter++;
printf("Running test_transport ....................\n");
rc = test_transport_main(argc, argv);
if (rc == 0) {
printf("PASS\n");
} else {
printf("FAIL\n");
error_counter++;
}
#endif
#if CONFIG_ALL_TEST_CASES || CONFIG_TESTS_URI
test_counter++;
printf("Running test_uri ....................\n");
rc = test_uri_main(argc, argv);
if (rc == 0) {
printf("PASS\n");
} else {
printf("FAIL\n");
error_counter++;
}
#endif
#if CONFIG_ALL_TEST_CASES || CONFIG_TESTS_URL
test_counter++;
printf("Running test_url ....................\n");
rc = test_url_main(argc, argv);
if (rc == 0) {
printf("PASS\n");
} else {
printf("FAIL\n");
error_counter++;
}
#endif
#if CONFIG_ALL_TEST_CASES || CONFIG_TESTS_UTIL
test_counter++;
printf("Running test_util ....................\n");
rc = test_util_main(argc, argv);
if (rc == 0) {
printf("PASS\n");
} else {
printf("FAIL\n");
error_counter++;
}
#endif
#if CONFIG_ALL_TEST_CASES || CONFIG_TESTS_VIRTUAL
test_counter++;
printf("Running test_virtual ....................\n");
rc = test_virtual_main(argc, argv);
if (rc == 0) {
printf("PASS\n");
} else {
printf("FAIL\n");
error_counter++;
}
#endif
#if CONFIG_ALL_TEST_CASES || CONFIG_TESTS_CONF
test_counter++;
printf("Running test_conf ....................\n");
rc = test_conf_main(argc, argv);
if (rc == 0) {
printf("PASS\n");
} else {
printf("FAIL\n");
error_counter++;
}
#endif
printf("Total tests : %d\n", test_counter);
printf("Total errors: %d\n", error_counter);
return error_counter;
}