aboutsummaryrefslogtreecommitdiff
path: root/libc/test/src/stdlib/CMakeLists.txt
blob: 5826cfe8d4ca341bb4f16222cb3ff8fd481ae72c (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
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
)

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
)

# This fails on NVPTX where the output value is one-off of the expected value.
if(NOT LIBC_TARGET_ARCHITECTURE_IS_NVPTX)
  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
  )
endif()

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
)

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
)

add_libc_test(
  strtoint32_test
  SUITE
    libc-stdlib-tests
  SRCS
    strtoint32_test.cpp
  DEPENDS
    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.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
)

# This fails on NVPTX where the output value is one-off of the expected value.
if(NOT LIBC_TARGET_ARCHITECTURE_IS_NVPTX)
  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
  )
endif()

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
)

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.include.stdlib
    libc.src.stdlib.div
)

add_libc_test(
  ldiv_test
  SUITE
    libc-stdlib-tests
  SRCS
    ldiv_test.cpp
  HDRS
    DivTest.h
  DEPENDS
    libc.include.stdlib
    libc.src.stdlib.ldiv
)

add_libc_test(
  lldiv_test
  SUITE
    libc-stdlib-tests
  SRCS
    lldiv_test.cpp
  HDRS
    DivTest.h
  DEPENDS
    libc.include.stdlib
    libc.src.stdlib.lldiv
)

add_libc_test(
  bsearch_test
  SUITE
    libc-stdlib-tests
  SRCS
    bsearch_test.cpp
  DEPENDS
    libc.include.stdlib
    libc.src.stdlib.bsearch
)

add_libc_test(
  qsort_test
  SUITE
    libc-stdlib-tests
  SRCS
    qsort_test.cpp
  DEPENDS
    libc.include.stdlib
    libc.src.stdlib.qsort
)


add_libc_test(
  qsort_r_test
  SUITE
    libc-stdlib-tests
  SRCS
    qsort_r_test.cpp
  DEPENDS
    libc.include.stdlib
    libc.src.stdlib.qsort_r
)

add_libc_test(
  rand_test
  SUITE
    libc-stdlib-tests
  SRCS
    rand_test.cpp
  DEPENDS
    libc.include.stdlib
    libc.src.stdlib.rand
    libc.src.stdlib.srand
)

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.include.stdlib
      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.include.stdlib
      libc.src.stdlib._Exit
      libc.src.stdlib.exit
      libc.src.stdlib.atexit
      libc.src.__support.CPP.array
      libc.src.__support.CPP.utility
  )

  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.stdlib
      libc.include.signal
      libc.src.stdlib.abort
      libc.src.stdlib._Exit
      libc.src.signal.raise
  )

  # Only the GPU has an in-tree 'malloc' implementation.
  if(LIBC_TARGET_OS_IS_GPU)
    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()