blob: bcd3d139aa46c97fbf7f1e78d3642595ebb1b8b2 (
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
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
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
|
add_custom_target(libc-stdlib-tests)
add_libc_test(
atof_test
SUITE
libc-stdlib-tests
SRCS
atof_test.cpp
DEPENDS
libc.src.errno.errno
libc.src.stdlib.atof
libc.test.UnitTest.ErrnoCheckingTest
)
add_header_library(
atoi_test_support
HDRS
AtoiTest.h
DEPENDS
libc.src.errno.errno
libc.src.__support.CPP.limits
libc.src.__support.CPP.type_traits
)
add_libc_test(
atoi_test
SUITE
libc-stdlib-tests
SRCS
atoi_test.cpp
DEPENDS
.atoi_test_support
libc.src.stdlib.atoi
)
add_libc_test(
atol_test
SUITE
libc-stdlib-tests
SRCS
atol_test.cpp
DEPENDS
.atoi_test_support
libc.src.stdlib.atol
)
add_libc_test(
atoll_test
SUITE
libc-stdlib-tests
SRCS
atoll_test.cpp
DEPENDS
.atoi_test_support
libc.src.stdlib.atoll
)
add_fp_unittest(
strtod_test
SUITE
libc-stdlib-tests
SRCS
strtod_test.cpp
DEPENDS
libc.src.errno.errno
libc.src.stdlib.strtod
libc.src.__support.FPUtil.fenv_impl
libc.test.UnitTest.ErrnoCheckingTest
)
add_fp_unittest(
strtof_test
SUITE
libc-stdlib-tests
SRCS
strtof_test.cpp
DEPENDS
libc.src.errno.errno
libc.src.stdlib.strtof
libc.src.__support.FPUtil.fenv_impl
libc.test.UnitTest.ErrnoCheckingTest
)
add_header_library(
strtol_test_support
HDRS
StrtolTest.h
DEPENDS
libc.src.__support.CPP.limits
libc.src.__support.CPP.type_traits
libc.src.errno.errno
libc.test.UnitTest.ErrnoCheckingTest
)
add_libc_test(
strtoint32_test
SUITE
libc-stdlib-tests
SRCS
strtoint32_test.cpp
DEPENDS
libc.hdr.stdint_proxy
libc.src.__support.str_to_integer
libc.src.errno.errno
.strtol_test_support
)
add_libc_test(
strtoint64_test
SUITE
libc-stdlib-tests
SRCS
strtoint64_test.cpp
DEPENDS
libc.hdr.stdint_proxy
libc.src.__support.str_to_integer
libc.src.errno.errno
.strtol_test_support
)
add_libc_test(
strtol_test
SUITE
libc-stdlib-tests
SRCS
strtol_test.cpp
DEPENDS
libc.src.stdlib.strtol
.strtol_test_support
)
add_libc_test(
strtold_test
SUITE
libc-stdlib-tests
SRCS
strtold_test.cpp
DEPENDS
libc.src.errno.errno
libc.src.__support.uint128
libc.src.stdlib.strtold
libc.test.UnitTest.ErrnoCheckingTest
)
add_libc_test(
strtoll_test
SUITE
libc-stdlib-tests
SRCS
strtoll_test.cpp
DEPENDS
libc.src.stdlib.strtoll
.strtol_test_support
)
add_libc_test(
strtoul_test
SUITE
libc-stdlib-tests
SRCS
strtoul_test.cpp
DEPENDS
libc.src.stdlib.strtoul
.strtol_test_support
)
add_libc_test(
strtoull_test
SUITE
libc-stdlib-tests
SRCS
strtoull_test.cpp
DEPENDS
libc.src.stdlib.strtoull
.strtol_test_support
)
if(LIBC_CONF_PRINTF_FLOAT_TO_STR_USE_DYADIC_FLOAT OR
LIBC_CONF_PRINTF_FLOAT_TO_STR_USE_FLOAT320)
list(APPEND strfrom_test_copts "-DLIBC_COPT_FLOAT_TO_STR_REDUCED_PRECISION")
endif()
add_header_library(
strfrom_test_support
HDRS
StrfromTest.h
DEPENDS
libc.src.__support.CPP.type_traits
libc.src.__support.FPUtil.fp_bits
libc.src.__support.macros.properties.architectures
)
add_libc_test(
strfromf_test
SUITE
libc-stdlib-tests
SRCS
strfromf_test.cpp
DEPENDS
.strfrom_test_support
libc.src.stdlib.strfromf
COMPILE_OPTIONS
${strfrom_test_copts}
)
add_libc_test(
strfromd_test
SUITE
libc-stdlib-tests
SRCS
strfromd_test.cpp
DEPENDS
.strfrom_test_support
libc.src.stdlib.strfromd
COMPILE_OPTIONS
${strfrom_test_copts}
)
add_libc_test(
strfroml_test
SUITE
libc-stdlib-tests
SRCS
strfroml_test.cpp
DEPENDS
.strfrom_test_support
libc.src.stdlib.strfroml
COMPILE_OPTIONS
${strfrom_test_copts}
)
add_libc_test(
a64l_test
SUITE
libc-stdlib-tests
SRCS
a64l_test.cpp
DEPENDS
libc.src.stdlib.a64l
)
add_libc_test(
l64a_test
SUITE
libc-stdlib-tests
SRCS
l64a_test.cpp
DEPENDS
libc.src.stdlib.l64a
libc.src.__support.CPP.limits
)
add_libc_test(
abs_test
SUITE
libc-stdlib-tests
SRCS
abs_test.cpp
DEPENDS
libc.src.stdlib.abs
)
add_libc_test(
labs_test
SUITE
libc-stdlib-tests
SRCS
labs_test.cpp
DEPENDS
libc.src.stdlib.labs
)
add_libc_test(
llabs_test
SUITE
libc-stdlib-tests
SRCS
llabs_test.cpp
DEPENDS
libc.src.stdlib.llabs
)
add_libc_test(
div_test
SUITE
libc-stdlib-tests
SRCS
div_test.cpp
HDRS
DivTest.h
DEPENDS
libc.hdr.types.div_t
libc.src.stdlib.div
)
add_libc_test(
ldiv_test
SUITE
libc-stdlib-tests
SRCS
ldiv_test.cpp
HDRS
DivTest.h
DEPENDS
libc.hdr.types.ldiv_t
libc.src.stdlib.ldiv
)
add_libc_test(
lldiv_test
SUITE
libc-stdlib-tests
SRCS
lldiv_test.cpp
HDRS
DivTest.h
DEPENDS
libc.hdr.types.lldiv_t
libc.src.stdlib.lldiv
)
add_libc_test(
bsearch_test
SUITE
libc-stdlib-tests
SRCS
bsearch_test.cpp
DEPENDS
libc.hdr.types.size_t
libc.src.stdlib.bsearch
)
add_libc_test(
heap_sort_test
SUITE
libc-stdlib-tests
SRCS
heap_sort_test.cpp
HDRS
SortingTest.h
DEPENDS
libc.src.stdlib.qsort
)
add_libc_test(
quick_sort_test
SUITE
libc-stdlib-tests
SRCS
quick_sort_test.cpp
HDRS
SortingTest.h
DEPENDS
libc.src.stdlib.qsort
)
add_libc_test(
qsort_r_test
SUITE
libc-stdlib-tests
SRCS
qsort_r_test.cpp
DEPENDS
libc.hdr.types.size_t
libc.src.stdlib.qsort_r
)
add_libc_test(
rand_test
SUITE
libc-stdlib-tests
SRCS
rand_test.cpp
DEPENDS
libc.src.stdlib.rand
libc.src.stdlib.srand
)
add_libc_test(
memalignment_test
SUITE
libc-stdlib-tests
SRCS
memalignment_test.cpp
DEPENDS
libc.hdr.stdint_proxy
libc.include.stdlib
libc.src.stdlib.memalignment
)
add_libc_test(
mbtowc_test
SUITE
libc-stdlib-tests
SRCS
mbtowc_test.cpp
DEPENDS
libc.hdr.errno_macros
libc.src.stdlib.mbtowc
libc.hdr.types.wchar_t
libc.test.UnitTest.ErrnoCheckingTest
)
add_libc_test(
mbstowcs_test
SUITE
libc-stdlib-tests
SRCS
mbstowcs_test.cpp
DEPENDS
libc.hdr.errno_macros
libc.src.stdlib.mbstowcs
libc.hdr.types.wchar_t
libc.test.UnitTest.ErrnoCheckingTest
)
add_libc_test(
wctomb_test
SUITE
libc-stdlib-tests
SRCS
wctomb_test.cpp
DEPENDS
libc.hdr.errno_macros
libc.src.stdlib.wctomb
libc.hdr.types.wchar_t
)
add_libc_test(
wcstombs_test
SUITE
libc-stdlib-tests
SRCS
wcstombs_test.cpp
DEPENDS
libc.src.stdlib.wcstombs
libc.test.UnitTest.ErrnoCheckingTest
libc.hdr.types.wchar_t
)
if(LLVM_LIBC_FULL_BUILD)
add_libc_test(
_Exit_test
# The EXPECT_EXITS test is only availible for unit tests.
UNIT_TEST_ONLY
SUITE
libc-stdlib-tests
SRCS
_Exit_test.cpp
DEPENDS
libc.src.stdlib._Exit
libc.src.stdlib.exit
)
add_libc_test(
atexit_test
# The EXPECT_EXITS test is only availible for unit tests.
UNIT_TEST_ONLY
SUITE
libc-stdlib-tests
SRCS
atexit_test.cpp
DEPENDS
libc.src.stdlib._Exit
libc.src.stdlib.exit
libc.src.stdlib.atexit
libc.src.__support.CPP.array
)
add_libc_test(
at_quick_exit_test
# The EXPECT_EXITS test is only availible for unit tests.
UNIT_TEST_ONLY
SUITE
libc-stdlib-tests
SRCS
at_quick_exit_test.cpp
DEPENDS
libc.src.stdlib._Exit
libc.src.stdlib.quick_exit
libc.src.stdlib.at_quick_exit
libc.src.__support.CPP.array
)
add_libc_test(
abort_test
# The EXPECT_DEATH test is only availible for unit tests.
UNIT_TEST_ONLY
SUITE
libc-stdlib-tests
SRCS
abort_test.cpp
DEPENDS
libc.include.signal
libc.src.stdlib.abort
libc.src.stdlib._Exit
libc.src.signal.raise
)
add_libc_test(
quick_exit_test
# The EXPECT_EXITS test is only availible for unit tests.
UNIT_TEST_ONLY
SUITE
libc-stdlib-tests
SRCS
quick_exit_test.cpp
DEPENDS
libc.include.stdlib
libc.src.stdlib.quick_exit
)
# Only baremetal and GPU has an in-tree 'malloc' implementation.
if((LIBC_TARGET_OS_IS_BAREMETAL OR LIBC_TARGET_OS_IS_GPU) AND
NOT LIBC_TARGET_ARCHITECTURE_IS_NVPTX)
add_libc_test(
malloc_test
HERMETIC_TEST_ONLY
SUITE
libc-stdlib-tests
SRCS
malloc_test.cpp
DEPENDS
libc.include.stdlib
libc.src.stdlib.malloc
libc.src.stdlib.free
)
endif()
endif()
|