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

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

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