summaryrefslogtreecommitdiff
path: root/libc/test/src/math/generic/CMakeLists.txt
blob: 9803f34873e5d09d1c37dc7e68c9d0e7c25c0265 (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
add_fp_unittest(
  ceil_test
  NEED_MPFR
  SUITE
    libc_math_unittests
  SRCS
    ../ceil_test.cpp
  DEPENDS
    libc.include.math
    libc.src.math.generic.ceil
)

add_fp_unittest(
  ceilf_test
  NEED_MPFR
  SUITE
    libc_math_unittests
  SRCS
    ../ceilf_test.cpp
  DEPENDS
    libc.include.math
    libc.src.math.generic.ceilf
)

add_fp_unittest(
  ceill_test
  NEED_MPFR
  SUITE
    libc_math_unittests
  SRCS
    ../ceill_test.cpp
  DEPENDS
    libc.include.math
    libc.src.math.generic.ceill
)