llvm/libc/test/src/math/smoke/CMakeLists.txt

add_custom_target(libc-math-smoke-tests)
add_dependencies(libc-math-unittests libc-math-smoke-tests)

add_fp_unittest(
  cosf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    cosf_test.cpp
  DEPENDS
    libc.src.errno.errno
    libc.src.math.cosf
)

add_fp_unittest(
  cospif_test
  SUITE
    libc-math-smoke-tests
  SRCS
    cospif_test.cpp
  DEPENDS
    libc.src.errno.errno
    libc.src.math.cospif
    libc.src.__support.CPP.array
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  sinf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    sinf_test.cpp
  DEPENDS
    libc.src.errno.errno
    libc.src.math.sinf
    libc.src.__support.CPP.array
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  sinpif_test
  SUITE
    libc-math-smoke-tests
  SRCS
    sinpif_test.cpp
  DEPENDS
    libc.src.errno.errno
    libc.src.math.sinpif
    libc.src.__support.CPP.array
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  sincosf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    sincosf_test.cpp
  DEPENDS
    libc.src.errno.errno
    libc.src.math.sincosf
    libc.src.__support.CPP.array
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  tanf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    tanf_test.cpp
  DEPENDS
    libc.src.errno.errno
    libc.src.math.tanf
    libc.src.__support.CPP.array
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fabs_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fabs_test.cpp
  HDRS
    FAbsTest.h
  DEPENDS
    libc.src.math.fabs
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fabsf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fabsf_test.cpp
  HDRS
    FAbsTest.h
  DEPENDS
    libc.src.math.fabsf
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fabsl_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fabsl_test.cpp
  HDRS
    FAbsTest.h
  DEPENDS
    libc.src.math.fabsl
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fabsf16_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fabsf16_test.cpp
  HDRS
    FAbsTest.h
  DEPENDS
    libc.src.math.fabsf16
)

add_fp_unittest(
  fabsf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fabsf128_test.cpp
  HDRS
    FAbsTest.h
  DEPENDS
    libc.src.math.fabsf128
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fadd_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fadd_test.cpp
  HDRS
    AddTest.h
  DEPENDS
    libc.hdr.errno_macros
    libc.hdr.fenv_macros
    libc.src.math.fadd
    libc.src.__support.macros.properties.os
)

add_fp_unittest(
  faddl_test
  NEED_MPFR
  SUITE
    libc-math-unittests
  SRCS
    faddl_test.cpp
  HDRS
    AddTest.h
  DEPENDS
    libc.hdr.errno_macros
    libc.hdr.fenv_macros
    libc.src.math.faddl
    libc.src.__support.macros.properties.os
)

add_fp_unittest(
  faddf128_test
  NEED_MPFR
  SUITE
    libc-math-unittests
  SRCS
    faddf128_test.cpp
  HDRS
    AddTest.h
  DEPENDS
    libc.hdr.errno_macros
    libc.hdr.fenv_macros
    libc.src.math.faddf128
    libc.src.__support.macros.properties.os
)

add_fp_unittest(
  trunc_test
  SUITE
    libc-math-smoke-tests
  SRCS
    trunc_test.cpp
  HDRS
    TruncTest.h
  DEPENDS
    libc.src.math.trunc
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  truncf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    truncf_test.cpp
  HDRS
    TruncTest.h
  DEPENDS
    libc.src.math.truncf
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  truncl_test
  SUITE
    libc-math-smoke-tests
  SRCS
    truncl_test.cpp
  HDRS
    TruncTest.h
  DEPENDS
    libc.src.math.truncl
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  truncf16_test
  SUITE
    libc-math-smoke-tests
  SRCS
    truncf16_test.cpp
  HDRS
    TruncTest.h
  DEPENDS
    libc.src.math.truncf16
)

add_fp_unittest(
  truncf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    truncf128_test.cpp
  HDRS
    TruncTest.h
  DEPENDS
    libc.src.math.truncf128
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  canonicalize_test
  SUITE
    libc-math-smoke-tests
  SRCS
    canonicalize_test.cpp
  HDRS
    CanonicalizeTest.h
  DEPENDS
    libc.src.math.canonicalize
    libc.src.__support.FPUtil.fp_bits
    libc.src.__support.FPUtil.fenv_impl
    libc.src.__support.integer_literals
)

add_fp_unittest(
  canonicalizef_test
  SUITE
    libc-math-smoke-tests
  SRCS
    canonicalizef_test.cpp
  HDRS
    CanonicalizeTest.h
  DEPENDS
    libc.src.math.canonicalizef
    libc.src.__support.FPUtil.fp_bits
    libc.src.__support.FPUtil.fenv_impl
    libc.src.__support.integer_literals
)

add_fp_unittest(
  canonicalizef16_test
  SUITE
    libc-math-smoke-tests
  SRCS
    canonicalizef16_test.cpp
  HDRS
    CanonicalizeTest.h
  DEPENDS
    libc.src.math.canonicalizef16
    libc.src.__support.FPUtil.fp_bits
    libc.src.__support.FPUtil.fenv_impl
    libc.src.__support.integer_literals
)

add_fp_unittest(
  canonicalizef128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    canonicalizef128_test.cpp
  HDRS
    CanonicalizeTest.h
  DEPENDS
    libc.src.math.canonicalizef128
    libc.src.__support.FPUtil.fp_bits
    libc.src.__support.FPUtil.fenv_impl
    libc.src.__support.integer_literals
)

add_fp_unittest(
  canonicalizel_test
  SUITE
    libc-math-smoke-tests
  SRCS
    canonicalizel_test.cpp
  HDRS
    CanonicalizeTest.h
  DEPENDS
    libc.src.math.canonicalizel
    libc.src.__support.FPUtil.fp_bits
    libc.src.__support.FPUtil.fenv_impl
    libc.src.__support.integer_literals
)

add_fp_unittest(
  iscanonical_test
  SUITE
    libc-math-smoke-tests
  SRCS
    iscanonical_test.cpp
  HDRS
    IsCanonicalTest.h
  DEPENDS
    libc.src.math.iscanonical
)

add_fp_unittest(
  iscanonicalf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    iscanonicalf_test.cpp
  HDRS
    IsCanonicalTest.h
  DEPENDS
    libc.src.math.iscanonicalf
)

add_fp_unittest(
  iscanonicall_test
  SUITE
    libc-math-smoke-tests
  SRCS
    iscanonicall_test.cpp
  HDRS
    IsCanonicalTest.h
  DEPENDS
    libc.src.math.iscanonicall
)

add_fp_unittest(
  iscanonicalf16_test
  SUITE
    libc-math-smoke-tests
  SRCS
    iscanonicalf16_test.cpp
  HDRS
    IsCanonicalTest.h
  DEPENDS
    libc.src.math.iscanonicalf16
)

add_fp_unittest(
  iscanonicalf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    iscanonicalf128_test.cpp
  HDRS
    IsCanonicalTest.h
  DEPENDS
    libc.src.math.iscanonicalf128
)

add_fp_unittest(
  ceil_test
  SUITE
    libc-math-smoke-tests
  SRCS
    ceil_test.cpp
  HDRS
    CeilTest.h
  DEPENDS
    libc.src.math.ceil
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  ceilf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    ceilf_test.cpp
  HDRS
    CeilTest.h
  DEPENDS
    libc.src.math.ceilf
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  ceill_test
  SUITE
    libc-math-smoke-tests
  SRCS
    ceill_test.cpp
  HDRS
    CeilTest.h
  DEPENDS
    libc.src.math.ceill
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  ceilf16_test
  SUITE
    libc-math-smoke-tests
  SRCS
    ceilf16_test.cpp
  HDRS
    CeilTest.h
  DEPENDS
    libc.src.math.ceilf16
)

add_fp_unittest(
  ceilf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    ceilf128_test.cpp
  HDRS
    CeilTest.h
  DEPENDS
    libc.src.math.ceilf128
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  dfmal_test
  SUITE
    libc-math-smoke-tests
  SRCS
    dfmal_test.cpp
  HDRS
    FmaTest.h
  DEPENDS
    libc.src.math.dfmal
    libc.src.__support.macros.properties.types
)

add_fp_unittest(
  dfmaf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    dfmaf128_test.cpp
  HDRS
    FmaTest.h
  DEPENDS
    libc.src.math.dfmaf128
    libc.src.__support.macros.properties.types
)

add_fp_unittest(
  dsubl_test
  SUITE
    libc-math-smoke-tests
  SRCS
    dsubl_test.cpp
  HDRS
    SubTest.h
  DEPENDS
    libc.src.errno.errno
    libc.hdr.fenv_macros
    libc.src.math.dsubl
    libc.src.__support.macros.properties.os
)

add_fp_unittest(
  dsubf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    dsubf128_test.cpp
  HDRS
    SubTest.h
  DEPENDS
    libc.hdr.errno_macros
    libc.hdr.fenv_macros
    libc.src.math.dsubf128
    libc.src.__support.macros.properties.os
)

add_fp_unittest(
  floor_test
  SUITE
    libc-math-smoke-tests
  SRCS
    floor_test.cpp
  HDRS
    FloorTest.h
  DEPENDS
    libc.src.math.floor
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  floorf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    floorf_test.cpp
  HDRS
    FloorTest.h
  DEPENDS
    libc.src.math.floorf
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  floorl_test
  SUITE
    libc-math-smoke-tests
  SRCS
    floorl_test.cpp
  HDRS
    FloorTest.h
  DEPENDS
    libc.src.math.floorl
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  floorf16_test
  SUITE
    libc-math-smoke-tests
  SRCS
    floorf16_test.cpp
  HDRS
    FloorTest.h
  DEPENDS
    libc.src.math.floorf16
)

add_fp_unittest(
  floorf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    floorf128_test.cpp
  HDRS
    FloorTest.h
  DEPENDS
    libc.src.math.floorf128
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  round_test
  SUITE
    libc-math-smoke-tests
  SRCS
    round_test.cpp
  HDRS
    RoundTest.h
  DEPENDS
    libc.src.math.round
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  roundf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    roundf_test.cpp
  HDRS
    RoundTest.h
  DEPENDS
    libc.src.math.roundf
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  roundl_test
  SUITE
    libc-math-smoke-tests
  SRCS
    roundl_test.cpp
  HDRS
    RoundTest.h
  DEPENDS
    libc.src.math.roundl
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  roundf16_test
  SUITE
    libc-math-smoke-tests
  SRCS
    roundf16_test.cpp
  HDRS
    RoundTest.h
  DEPENDS
    libc.src.math.roundf16
)

add_fp_unittest(
  roundf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    roundf128_test.cpp
  HDRS
    RoundTest.h
  DEPENDS
    libc.src.math.roundf128
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  roundeven_test
  SUITE
    libc-math-smoke-tests
  SRCS
    roundeven_test.cpp
  HDRS
  RoundEvenTest.h
  DEPENDS
    libc.src.math.roundeven
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  roundevenf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    roundevenf_test.cpp
  HDRS
  RoundEvenTest.h
  DEPENDS
    libc.src.math.roundevenf
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  roundevenl_test
  SUITE
    libc-math-smoke-tests
  SRCS
    roundevenl_test.cpp
  HDRS
  RoundEvenTest.h
  DEPENDS
    libc.src.math.roundevenl
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  roundevenf16_test
  SUITE
    libc-math-smoke-tests
  SRCS
    roundevenf16_test.cpp
  HDRS
    RoundEvenTest.h
  DEPENDS
    libc.src.math.roundevenf16
)

add_fp_unittest(
  roundevenf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    roundevenf128_test.cpp
  HDRS
  RoundEvenTest.h
  DEPENDS
    libc.src.math.roundevenf128
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  lround_test
  SUITE
    libc-math-smoke-tests
  SRCS
    lround_test.cpp
  HDRS
    RoundToIntegerTest.h
  DEPENDS
    libc.src.errno.errno
    libc.src.math.lround
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fenv_impl
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  lroundf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    lroundf_test.cpp
  HDRS
    RoundToIntegerTest.h
  DEPENDS
    libc.src.errno.errno
    libc.src.math.lroundf
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fenv_impl
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  lroundl_test
  SUITE
    libc-math-smoke-tests
  SRCS
    lroundl_test.cpp
  HDRS
    RoundToIntegerTest.h
  DEPENDS
    libc.src.errno.errno
    libc.src.math.lroundl
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fenv_impl
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  lroundf16_test
  SUITE
    libc-math-smoke-tests
  SRCS
    lroundf16_test.cpp
  HDRS
    RoundToIntegerTest.h
  DEPENDS
    libc.src.errno.errno
    libc.src.math.lroundf16
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fenv_impl
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  lroundf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    lroundf128_test.cpp
  HDRS
    RoundToIntegerTest.h
  DEPENDS
    libc.src.errno.errno
    libc.src.math.lroundf128
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fenv_impl
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  llround_test
  SUITE
    libc-math-smoke-tests
  SRCS
    llround_test.cpp
  HDRS
    RoundToIntegerTest.h
  DEPENDS
    libc.src.errno.errno
    libc.src.math.llround
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fenv_impl
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  llroundf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    llroundf_test.cpp
  HDRS
    RoundToIntegerTest.h
  DEPENDS
    libc.src.errno.errno
    libc.src.math.llroundf
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fenv_impl
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  llroundl_test
  SUITE
    libc-math-smoke-tests
  SRCS
    llroundl_test.cpp
  HDRS
    RoundToIntegerTest.h
  DEPENDS
    libc.src.errno.errno
    libc.src.math.llroundl
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fenv_impl
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  llroundf16_test
  SUITE
    libc-math-smoke-tests
  SRCS
    llroundf16_test.cpp
  HDRS
    RoundToIntegerTest.h
  DEPENDS
    libc.src.errno.errno
    libc.src.math.llroundf16
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fenv_impl
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  llroundf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    llroundf128_test.cpp
  HDRS
    RoundToIntegerTest.h
  DEPENDS
    libc.src.errno.errno
    libc.src.math.llroundf128
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fenv_impl
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  rint_test
  SUITE
    libc-math-smoke-tests
  SRCS
    rint_test.cpp
  HDRS
    RIntTest.h
  DEPENDS
    libc.src.math.rint
    libc.src.__support.FPUtil.fenv_impl
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  rintf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    rintf_test.cpp
  HDRS
    RIntTest.h
  DEPENDS
    libc.src.math.rintf
    libc.src.__support.FPUtil.fenv_impl
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  rintl_test
  SUITE
    libc-math-smoke-tests
  SRCS
    rintl_test.cpp
  HDRS
    RIntTest.h
  DEPENDS
    libc.src.math.rintl
    libc.src.__support.FPUtil.fenv_impl
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  rintf16_test
  SUITE
    libc-math-smoke-tests
  SRCS
    rintf16_test.cpp
  HDRS
    RIntTest.h
  DEPENDS
    libc.src.math.rintf16
    libc.src.__support.FPUtil.fenv_impl
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  rintf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    rintf128_test.cpp
  HDRS
    RIntTest.h
  DEPENDS
    libc.src.math.rintf128
    libc.src.__support.FPUtil.fenv_impl
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  lrint_test
  SUITE
    libc-math-smoke-tests
  SRCS
    lrint_test.cpp
  HDRS
    RoundToIntegerTest.h
  DEPENDS
    libc.src.errno.errno
    libc.src.math.lrint
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fenv_impl
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  lrintf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    lrintf_test.cpp
  HDRS
    RoundToIntegerTest.h
  DEPENDS
    libc.src.errno.errno
    libc.src.math.lrintf
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fenv_impl
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  lrintl_test
  SUITE
    libc-math-smoke-tests
  SRCS
    lrintl_test.cpp
  HDRS
    RoundToIntegerTest.h
  DEPENDS
    libc.src.errno.errno
    libc.src.math.lrintl
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fenv_impl
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  lrintf16_test
  SUITE
    libc-math-smoke-tests
  SRCS
    lrintf16_test.cpp
  HDRS
    RoundToIntegerTest.h
  DEPENDS
    libc.src.errno.errno
    libc.src.math.lrintf16
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fenv_impl
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  lrintf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    lrintf128_test.cpp
  HDRS
    RoundToIntegerTest.h
  DEPENDS
    libc.src.errno.errno
    libc.src.math.lrintf128
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fenv_impl
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  llrint_test
  SUITE
    libc-math-smoke-tests
  SRCS
    llrint_test.cpp
  HDRS
    RoundToIntegerTest.h
  DEPENDS
    libc.src.errno.errno
    libc.src.math.llrint
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fenv_impl
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  llrintf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    llrintf_test.cpp
  HDRS
    RoundToIntegerTest.h
  DEPENDS
    libc.src.errno.errno
    libc.src.math.llrintf
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fenv_impl
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  llrintl_test
  SUITE
    libc-math-smoke-tests
  SRCS
    llrintl_test.cpp
  HDRS
    RoundToIntegerTest.h
  DEPENDS
    libc.src.errno.errno
    libc.src.math.llrintl
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fenv_impl
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  llrintf16_test
  SUITE
    libc-math-smoke-tests
  SRCS
    llrintf16_test.cpp
  HDRS
    RoundToIntegerTest.h
  DEPENDS
    libc.src.errno.errno
    libc.src.math.llrintf16
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fenv_impl
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  llrintf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    llrintf128_test.cpp
  HDRS
    RoundToIntegerTest.h
  DEPENDS
    libc.src.errno.errno
    libc.src.math.llrintf128
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fenv_impl
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  exp_test
  SUITE
    libc-math-smoke-tests
  SRCS
    exp_test.cpp
  DEPENDS
    libc.src.errno.errno
    libc.src.math.exp
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  expf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    expf_test.cpp
  DEPENDS
    libc.src.errno.errno
    libc.src.math.expf
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  expf16_test
  SUITE
    libc-math-smoke-tests
  SRCS
    expf16_test.cpp
  DEPENDS
    libc.hdr.errno_macros
    libc.hdr.fenv_macros
    libc.src.errno.errno
    libc.src.math.expf16
    libc.src.__support.FPUtil.cast
)

add_fp_unittest(
  exp2_test
  SUITE
    libc-math-smoke-tests
  SRCS
    exp2_test.cpp
  DEPENDS
    libc.src.errno.errno
    libc.src.math.exp2
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  exp2f_test
  SUITE
    libc-math-smoke-tests
  SRCS
    exp2f_test.cpp
  DEPENDS
    libc.src.errno.errno
    libc.src.math.exp2f
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  exp2f16_test
  SUITE
    libc-math-smoke-tests
  SRCS
    exp2f16_test.cpp
  DEPENDS
    libc.hdr.fenv_macros
    libc.src.errno.errno
    libc.src.math.exp2f16
    libc.src.__support.FPUtil.cast
)

add_fp_unittest(
  exp2m1f_test
  SUITE
    libc-math-smoke-tests
  SRCS
    exp2m1f_test.cpp
  DEPENDS
    libc.src.errno.errno
    libc.src.math.exp2m1f
)

add_fp_unittest(
  exp10_test
  SUITE
    libc-math-smoke-tests
  SRCS
    exp10_test.cpp
  DEPENDS
    libc.src.errno.errno
    libc.src.math.exp10
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  exp10f_test
  SUITE
    libc-math-smoke-tests
  SRCS
    exp10f_test.cpp
  DEPENDS
    libc.src.errno.errno
    libc.src.math.exp10f
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  exp10f16_test
  SUITE
    libc-math-smoke-tests
  SRCS
    exp10f16_test.cpp
  DEPENDS
    libc.hdr.fenv_macros
    libc.src.errno.errno
    libc.src.math.exp10f16
    libc.src.__support.FPUtil.cast
)

add_fp_unittest(
  copysign_test
  SUITE
    libc-math-smoke-tests
  SRCS
    copysign_test.cpp
  HDRS
    CopySignTest.h
  DEPENDS
    libc.src.math.copysign
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  copysignf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    copysignf_test.cpp
  HDRS
    CopySignTest.h
  DEPENDS
    libc.src.math.copysignf
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  copysignl_test
  SUITE
    libc-math-smoke-tests
  SRCS
    copysignl_test.cpp
  HDRS
    CopySignTest.h
  DEPENDS
    libc.src.math.copysignl
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  copysignf16_test
  SUITE
    libc-math-smoke-tests
  SRCS
    copysignf16_test.cpp
  HDRS
    CopySignTest.h
  DEPENDS
    libc.src.math.copysignf16
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  copysignf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    copysignf128_test.cpp
  HDRS
    CopySignTest.h
  DEPENDS
    libc.src.math.copysignf128
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  frexp_test
  SUITE
    libc-math-smoke-tests
  SRCS
    frexp_test.cpp
  HDRS
    FrexpTest.h
  DEPENDS
    libc.src.math.frexp
)

add_fp_unittest(
  frexpf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    frexpf_test.cpp
  HDRS
    FrexpTest.h
  DEPENDS
    libc.src.math.frexpf
)

add_fp_unittest(
  frexpl_test
  SUITE
    libc-math-smoke-tests
  SRCS
    frexpl_test.cpp
  HDRS
    FrexpTest.h
  DEPENDS
    libc.src.math.frexpl
)

add_fp_unittest(
  frexpf16_test
  SUITE
    libc-math-smoke-tests
  SRCS
    frexpf16_test.cpp
  HDRS
    FrexpTest.h
  DEPENDS
    libc.src.math.frexpf16
)

add_fp_unittest(
  frexpf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    frexpf128_test.cpp
  HDRS
    FrexpTest.h
  DEPENDS
    libc.src.math.frexpf128
)

add_fp_unittest(
  fromfp_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fromfp_test.cpp
  HDRS
    FromfpTest.h
  DEPENDS
    libc.src.math.fromfp
)

add_fp_unittest(
  fromfpf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fromfpf_test.cpp
  HDRS
    FromfpTest.h
  DEPENDS
    libc.src.math.fromfpf
)

add_fp_unittest(
  fromfpl_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fromfpl_test.cpp
  HDRS
    FromfpTest.h
  DEPENDS
    libc.src.math.fromfpl
)

add_fp_unittest(
  fromfpf16_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fromfpf16_test.cpp
  HDRS
    FromfpTest.h
  DEPENDS
    libc.src.math.fromfpf16
)

add_fp_unittest(
  fromfpf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fromfpf128_test.cpp
  HDRS
    FromfpTest.h
  DEPENDS
    libc.src.math.fromfpf128
)

add_fp_unittest(
  fromfpx_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fromfpx_test.cpp
  HDRS
    FromfpxTest.h
  DEPENDS
    libc.src.math.fromfpx
)

add_fp_unittest(
  fromfpxf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fromfpxf_test.cpp
  HDRS
    FromfpxTest.h
  DEPENDS
    libc.src.math.fromfpxf
)

add_fp_unittest(
  fromfpxl_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fromfpxl_test.cpp
  HDRS
    FromfpxTest.h
  DEPENDS
    libc.src.math.fromfpxl
)

add_fp_unittest(
  fromfpxf16_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fromfpxf16_test.cpp
  HDRS
    FromfpxTest.h
  DEPENDS
    libc.src.math.fromfpxf16
)

add_fp_unittest(
  fromfpxf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fromfpxf128_test.cpp
  HDRS
    FromfpxTest.h
  DEPENDS
    libc.src.math.fromfpxf128
)

add_fp_unittest(
  ufromfp_test
  SUITE
    libc-math-smoke-tests
  SRCS
    ufromfp_test.cpp
  HDRS
    UfromfpTest.h
  DEPENDS
    libc.src.math.ufromfp
)

add_fp_unittest(
  ufromfpf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    ufromfpf_test.cpp
  HDRS
    UfromfpTest.h
  DEPENDS
    libc.src.math.ufromfpf
)

add_fp_unittest(
  ufromfpl_test
  SUITE
    libc-math-smoke-tests
  SRCS
    ufromfpl_test.cpp
  HDRS
    UfromfpTest.h
  DEPENDS
    libc.src.math.ufromfpl
)

add_fp_unittest(
  ufromfpf16_test
  SUITE
    libc-math-smoke-tests
  SRCS
    ufromfpf16_test.cpp
  HDRS
    UfromfpTest.h
  DEPENDS
    libc.src.math.ufromfpf16
)

add_fp_unittest(
  ufromfpf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    ufromfpf128_test.cpp
  HDRS
    UfromfpTest.h
  DEPENDS
    libc.src.math.ufromfpf128
)

add_fp_unittest(
  ufromfpx_test
  SUITE
    libc-math-smoke-tests
  SRCS
    ufromfpx_test.cpp
  HDRS
    UfromfpxTest.h
  DEPENDS
    libc.src.math.ufromfpx
)

add_fp_unittest(
  ufromfpxf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    ufromfpxf_test.cpp
  HDRS
    UfromfpxTest.h
  DEPENDS
    libc.src.math.ufromfpxf
)

add_fp_unittest(
  ufromfpxl_test
  SUITE
    libc-math-smoke-tests
  SRCS
    ufromfpxl_test.cpp
  HDRS
    UfromfpxTest.h
  DEPENDS
    libc.src.math.ufromfpxl
)

add_fp_unittest(
  ufromfpxf16_test
  SUITE
    libc-math-smoke-tests
  SRCS
    ufromfpxf16_test.cpp
  HDRS
    UfromfpxTest.h
  DEPENDS
    libc.src.math.ufromfpxf16
)

add_fp_unittest(
  ufromfpxf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    ufromfpxf128_test.cpp
  HDRS
    UfromfpxTest.h
  DEPENDS
    libc.src.math.ufromfpxf128
)

add_fp_unittest(
  ilogb_test
  SUITE
    libc-math-smoke-tests
  SRCS
    ilogb_test.cpp
  HDRS
    ILogbTest.h
  DEPENDS
    libc.src.math.ilogb
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
    libc.src.__support.FPUtil.manipulation_functions
)

add_fp_unittest(
  ilogbf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    ilogbf_test.cpp
  HDRS
    ILogbTest.h
  DEPENDS
    libc.src.math.ilogbf
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
    libc.src.__support.FPUtil.manipulation_functions
)

add_fp_unittest(
  ilogbl_test
  SUITE
    libc-math-smoke-tests
  SRCS
    ilogbl_test.cpp
  HDRS
    ILogbTest.h
  DEPENDS
    libc.src.math.ilogbl
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
    libc.src.__support.FPUtil.manipulation_functions
)

add_fp_unittest(
  ilogbf16_test
  SUITE
    libc-math-smoke-tests
  SRCS
    ilogbf16_test.cpp
  HDRS
    ILogbTest.h
  DEPENDS
    libc.src.math.ilogbf16
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
    libc.src.__support.FPUtil.manipulation_functions
)

add_fp_unittest(
  ilogbf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    ilogbf128_test.cpp
  HDRS
    ILogbTest.h
  DEPENDS
    libc.src.math.ilogbf128
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
    libc.src.__support.FPUtil.manipulation_functions
)

add_fp_unittest(
  issignaling_test
  SUITE
    libc-math-smoke-tests
  SRCS
    issignaling_test.cpp
  HDRS
    IsSignalingTest.h
  DEPENDS
    libc.src.math.issignaling
)

add_fp_unittest(
  issignalingf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    issignalingf_test.cpp
  HDRS
    IsSignalingTest.h
  DEPENDS
    libc.src.math.issignalingf
)

add_fp_unittest(
  issignalingl_test
  SUITE
    libc-math-smoke-tests
  SRCS
    issignalingl_test.cpp
  HDRS
    IsSignalingTest.h
  DEPENDS
    libc.src.math.issignalingl
)

add_fp_unittest(
  issignalingf16_test
  SUITE
    libc-math-smoke-tests
  SRCS
    issignalingf16_test.cpp
  HDRS
    IsSignalingTest.h
  DEPENDS
    libc.src.math.issignalingf16
)

add_fp_unittest(
  issignalingf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    issignalingf128_test.cpp
  HDRS
    IsSignalingTest.h
  DEPENDS
    libc.src.math.issignalingf128
)

add_fp_unittest(
  llogb_test
  SUITE
    libc-math-smoke-tests
  SRCS
    llogb_test.cpp
  HDRS
    ILogbTest.h
  DEPENDS
    libc.src.math.llogb
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
    libc.src.__support.FPUtil.manipulation_functions
)

add_fp_unittest(
  llogbf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    llogbf_test.cpp
  HDRS
    ILogbTest.h
  DEPENDS
    libc.src.math.llogbf
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
    libc.src.__support.FPUtil.manipulation_functions
)

add_fp_unittest(
  llogbl_test
  SUITE
    libc-math-smoke-tests
  SRCS
    llogbl_test.cpp
  HDRS
    ILogbTest.h
  DEPENDS
    libc.src.math.llogbl
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
    libc.src.__support.FPUtil.manipulation_functions
)

add_fp_unittest(
  llogbf16_test
  SUITE
    libc-math-smoke-tests
  SRCS
    llogbf16_test.cpp
  HDRS
    ILogbTest.h
  DEPENDS
    libc.src.math.llogbf16
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
    libc.src.__support.FPUtil.manipulation_functions
)

add_fp_unittest(
  llogbf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    llogbf128_test.cpp
  HDRS
    ILogbTest.h
  DEPENDS
    libc.src.math.llogbf128
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
    libc.src.__support.FPUtil.manipulation_functions
)

add_fp_unittest(
  ldexp_test
  SUITE
    libc-math-smoke-tests
  SRCS
    ldexp_test.cpp
  HDRS
    LdExpTest.h
  DEPENDS
    libc.src.math.ldexp
    libc.src.__support.CPP.limits
    libc.src.__support.FPUtil.fp_bits
    libc.src.__support.FPUtil.normal_float
)

add_fp_unittest(
  ldexpf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    ldexpf_test.cpp
  HDRS
    LdExpTest.h
  DEPENDS
    libc.src.math.ldexpf
    libc.src.__support.CPP.limits
    libc.src.__support.FPUtil.fp_bits
    libc.src.__support.FPUtil.normal_float
)

add_fp_unittest(
  ldexpl_test
  SUITE
    libc-math-smoke-tests
  SRCS
    ldexpl_test.cpp
  HDRS
    LdExpTest.h
  DEPENDS
    libc.src.math.ldexpl
    libc.src.__support.CPP.limits
    libc.src.__support.FPUtil.fp_bits
    libc.src.__support.FPUtil.normal_float
)

add_fp_unittest(
  ldexpf16_test
  SUITE
    libc-math-smoke-tests
  SRCS
    ldexpf16_test.cpp
  HDRS
    LdExpTest.h
  DEPENDS
    libc.src.math.ldexpf16
    libc.src.__support.CPP.limits
    libc.src.__support.FPUtil.fp_bits
    libc.src.__support.FPUtil.normal_float
)

add_fp_unittest(
  ldexpf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    ldexpf128_test.cpp
  HDRS
    LdExpTest.h
  DEPENDS
    libc.src.math.ldexpf128
    libc.src.__support.CPP.limits
    libc.src.__support.FPUtil.fp_bits
    libc.src.__support.FPUtil.normal_float
)

add_fp_unittest(
  logb_test
  SUITE
    libc-math-smoke-tests
  SRCS
    logb_test.cpp
  HDRS
    LogbTest.h
  DEPENDS
    libc.src.math.logb
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.manipulation_functions
)

add_fp_unittest(
  logbf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    logbf_test.cpp
  HDRS
    LogbTest.h
  DEPENDS
    libc.src.math.logbf
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.manipulation_functions
)

add_fp_unittest(
  logbl_test
  SUITE
    libc-math-smoke-tests
  SRCS
    logbl_test.cpp
  HDRS
    LogbTest.h
  DEPENDS
    libc.src.math.logbl
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.manipulation_functions
)

add_fp_unittest(
  logbf16_test
  SUITE
    libc-math-smoke-tests
  SRCS
    logbf16_test.cpp
  HDRS
    LogbTest.h
  DEPENDS
    libc.src.math.logbf16
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.manipulation_functions
)

add_fp_unittest(
  logbf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    logbf128_test.cpp
  HDRS
    LogbTest.h
  DEPENDS
    libc.src.math.logbf128
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.manipulation_functions
)

add_fp_unittest(
  modf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    modf_test.cpp
  HDRS
    ModfTest.h
  DEPENDS
    libc.src.math.modf
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.basic_operations
    libc.src.__support.FPUtil.nearest_integer_operations
)

add_fp_unittest(
  modff_test
  SUITE
    libc-math-smoke-tests
  SRCS
    modff_test.cpp
  HDRS
    ModfTest.h
  DEPENDS
    libc.src.math.modff
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.basic_operations
    libc.src.__support.FPUtil.nearest_integer_operations
)

add_fp_unittest(
  modfl_test
  SUITE
    libc-math-smoke-tests
  SRCS
    modfl_test.cpp
  HDRS
    ModfTest.h
  DEPENDS
    libc.src.math.modfl
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.basic_operations
    libc.src.__support.FPUtil.nearest_integer_operations
)

add_fp_unittest(
  modff16_test
  SUITE
    libc-math-smoke-tests
  SRCS
    modff16_test.cpp
  HDRS
    ModfTest.h
  DEPENDS
    libc.src.math.modff16
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.basic_operations
    libc.src.__support.FPUtil.nearest_integer_operations
)

add_fp_unittest(
  modff128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    modff128_test.cpp
  HDRS
    ModfTest.h
  DEPENDS
    libc.src.math.modff128
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.basic_operations
    libc.src.__support.FPUtil.nearest_integer_operations
)

add_fp_unittest(
  fdimf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fdimf_test.cpp
  HDRS
    FDimTest.h
  DEPENDS
    libc.src.math.fdimf
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fdim_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fdim_test.cpp
  HDRS
    FDimTest.h
  DEPENDS
    libc.src.math.fdim
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fdiml_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fdiml_test.cpp
  HDRS
    FDimTest.h
  DEPENDS
    libc.src.math.fdiml
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fdimf16_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fdimf16_test.cpp
  HDRS
    FDimTest.h
  DEPENDS
    libc.src.math.fdimf16
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fdimf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fdimf128_test.cpp
  HDRS
    FDimTest.h
  DEPENDS
    libc.src.math.fdimf128
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fminf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fminf_test.cpp
  HDRS
    FMinTest.h
  DEPENDS
    libc.src.math.fminf
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fmin_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fmin_test.cpp
  HDRS
    FMinTest.h
  DEPENDS
    libc.src.math.fmin
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fminl_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fminl_test.cpp
  HDRS
    FMinTest.h
  DEPENDS
    libc.src.math.fminl
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fminf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fminf128_test.cpp
  HDRS
    FMinTest.h
  DEPENDS
    libc.src.math.fminf128
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fminf16_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fminf16_test.cpp
  HDRS
    FMinTest.h
  DEPENDS
    libc.src.math.fminf16
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fmaxf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fmaxf_test.cpp
  HDRS
    FMaxTest.h
  DEPENDS
    libc.src.math.fmaxf
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fmax_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fmax_test.cpp
  HDRS
    FMaxTest.h
  DEPENDS
    libc.src.math.fmax
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fmaxl_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fmaxl_test.cpp
  HDRS
    FMaxTest.h
  DEPENDS
    libc.src.math.fmaxl
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fmaxf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fmaxf128_test.cpp
  HDRS
    FMaxTest.h
  DEPENDS
    libc.src.math.fmaxf128
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fmaxf16_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fmaxf16_test.cpp
  HDRS
    FMaxTest.h
  DEPENDS
    libc.src.math.fmaxf16
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fmaximuml_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fmaximuml_test.cpp
  HDRS
    FMaximumTest.h
  DEPENDS
    libc.src.math.fmaximuml
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fmaximumf16_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fmaximumf16_test.cpp
  HDRS
    FMaximumTest.h
  DEPENDS
    libc.src.math.fmaximumf16
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fmaximumf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fmaximumf128_test.cpp
  HDRS
    FMaximumTest.h
  DEPENDS
    libc.src.math.fmaximumf128
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fmaximum_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fmaximum_test.cpp
  HDRS
    FMaximumTest.h
  DEPENDS
    libc.src.math.fmaximum
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fmaximumf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fmaximumf_test.cpp
  HDRS
    FMaximumTest.h
  DEPENDS
    libc.src.math.fmaximumf
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fmaximum_numf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fmaximum_numf_test.cpp
  HDRS
    FMaximumNumTest.h
  DEPENDS
    libc.src.math.fmaximum_numf
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fmaximum_num_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fmaximum_num_test.cpp
  HDRS
    FMaximumNumTest.h
  DEPENDS
    libc.src.math.fmaximum_num
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fmaximum_numl_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fmaximum_numl_test.cpp
  HDRS
    FMaximumNumTest.h
  DEPENDS
    libc.src.math.fmaximum_numl
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fmaximum_numf16_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fmaximum_numf16_test.cpp
  HDRS
    FMaximumNumTest.h
  DEPENDS
    libc.src.math.fmaximum_numf16
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fmaximum_numf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fmaximum_numf128_test.cpp
  HDRS
    FMaximumNumTest.h
  DEPENDS
    libc.src.math.fmaximum_numf128
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fmaximum_magf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fmaximum_magf_test.cpp
  HDRS
    FMaximumMagTest.h
  DEPENDS
    libc.src.math.fmaximum_magf
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.basic_operations
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fmaximum_mag_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fmaximum_mag_test.cpp
  HDRS
    FMaximumMagTest.h
  DEPENDS
    libc.src.math.fmaximum_mag
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.basic_operations
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fmaximum_magl_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fmaximum_magl_test.cpp
  HDRS
    FMaximumMagTest.h
  DEPENDS
    libc.src.math.fmaximum_magl
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.basic_operations
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fmaximum_magf16_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fmaximum_magf16_test.cpp
  HDRS
    FMaximumMagTest.h
  DEPENDS
    libc.src.math.fmaximum_magf16
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.basic_operations
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fmaximum_magf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fmaximum_magf128_test.cpp
  HDRS
    FMaximumMagTest.h
  DEPENDS
    libc.src.math.fmaximum_magf128
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.basic_operations
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fmaximum_mag_numf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fmaximum_mag_numf_test.cpp
  HDRS
    FMaximumMagNumTest.h
  DEPENDS
    libc.src.math.fmaximum_mag_numf
    libc.src.__support.FPUtil.basic_operations
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fmaximum_mag_num_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fmaximum_mag_num_test.cpp
  HDRS
    FMaximumMagNumTest.h
  DEPENDS
    libc.src.math.fmaximum_mag_num
    libc.src.__support.FPUtil.basic_operations
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fmaximum_mag_numl_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fmaximum_mag_numl_test.cpp
  HDRS
    FMaximumMagNumTest.h
  DEPENDS
    libc.src.math.fmaximum_mag_numl
    libc.src.__support.FPUtil.basic_operations
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fmaximum_mag_numf16_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fmaximum_mag_numf16_test.cpp
  HDRS
    FMaximumMagNumTest.h
  DEPENDS
    libc.src.math.fmaximum_mag_numf16
    libc.src.__support.FPUtil.basic_operations
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fmaximum_mag_numf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fmaximum_mag_numf128_test.cpp
  HDRS
    FMaximumMagNumTest.h
  DEPENDS
    libc.src.math.fmaximum_mag_numf128
    libc.src.__support.FPUtil.basic_operations
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fminimuml_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fminimuml_test.cpp
  HDRS
    FMinimumTest.h
  DEPENDS
    libc.src.math.fminimuml
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fminimumf16_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fminimumf16_test.cpp
  HDRS
    FMinimumTest.h
  DEPENDS
    libc.src.math.fminimumf16
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fminimumf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fminimumf128_test.cpp
  HDRS
    FMinimumTest.h
  DEPENDS
    libc.src.math.fminimumf128
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fminimum_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fminimum_test.cpp
  HDRS
    FMinimumTest.h
  DEPENDS
    libc.src.math.fminimum
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fminimumf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fminimumf_test.cpp
  HDRS
    FMinimumTest.h
  DEPENDS
    libc.src.math.fminimumf
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fminimum_numf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fminimum_numf_test.cpp
  HDRS
    FMinimumNumTest.h
  DEPENDS
    libc.src.math.fminimum_numf
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fminimum_num_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fminimum_num_test.cpp
  HDRS
    FMinimumNumTest.h
  DEPENDS
    libc.src.math.fminimum_num
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fminimum_numl_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fminimum_numl_test.cpp
  HDRS
    FMinimumNumTest.h
  DEPENDS
    libc.src.math.fminimum_numl
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fminimum_numf16_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fminimum_numf16_test.cpp
  HDRS
    FMinimumNumTest.h
  DEPENDS
    libc.src.math.fminimum_numf16
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fminimum_numf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fminimum_numf128_test.cpp
  HDRS
    FMinimumNumTest.h
  DEPENDS
    libc.src.math.fminimum_numf128
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fminimum_magf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fminimum_magf_test.cpp
  HDRS
    FMinimumMagTest.h
  DEPENDS
    libc.src.math.fminimum_magf
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fminimum_mag_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fminimum_mag_test.cpp
  HDRS
    FMinimumMagTest.h
  DEPENDS
    libc.src.math.fminimum_mag
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fminimum_magl_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fminimum_magl_test.cpp
  HDRS
    FMinimumMagTest.h
  DEPENDS
    libc.src.math.fminimum_magl
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fminimum_magf16_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fminimum_magf16_test.cpp
  HDRS
    FMinimumMagTest.h
  DEPENDS
    libc.src.math.fminimum_magf16
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fminimum_magf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fminimum_magf128_test.cpp
  HDRS
    FMinimumMagTest.h
  DEPENDS
    libc.src.math.fminimum_magf128
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fminimum_mag_numf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fminimum_mag_numf_test.cpp
  HDRS
    FMinimumMagNumTest.h
  DEPENDS
    libc.src.math.fminimum_mag_numf
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fminimum_mag_num_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fminimum_mag_num_test.cpp
  HDRS
    FMinimumMagNumTest.h
  DEPENDS
    libc.src.math.fminimum_mag_num
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fminimum_mag_numl_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fminimum_mag_numl_test.cpp
  HDRS
    FMinimumMagNumTest.h
  DEPENDS
    libc.src.math.fminimum_mag_numl
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fminimum_mag_numf16_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fminimum_mag_numf16_test.cpp
  HDRS
    FMinimumMagNumTest.h
  DEPENDS
    libc.src.math.fminimum_mag_numf16
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fminimum_mag_numf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fminimum_mag_numf128_test.cpp
  HDRS
    FMinimumMagNumTest.h
  DEPENDS
    libc.src.math.fminimum_mag_numf128
    libc.src.__support.CPP.algorithm
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fmul_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fmul_test.cpp
  HDRS
    MulTest.h
  DEPENDS
    libc.hdr.errno_macros
    libc.hdr.fenv_macros
    libc.src.__support.FPUtil.basic_operations
    libc.src.math.fmul
)

add_fp_unittest(
  fmull_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fmull_test.cpp
  HDRS
    MulTest.h
  DEPENDS
    libc.hdr.errno_macros
    libc.hdr.fenv_macros
    libc.src.__support.FPUtil.basic_operations
    libc.src.math.fmull
)

add_fp_unittest(
  sqrtf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    sqrtf_test.cpp
  HDRS
    SqrtTest.h
  DEPENDS
    libc.src.math.sqrtf
)

add_fp_unittest(
  sqrt_test
  SUITE
    libc-math-smoke-tests
  SRCS
    sqrt_test.cpp
  HDRS
    SqrtTest.h
  DEPENDS
    libc.src.math.sqrt
)

add_fp_unittest(
  sqrtl_test
  SUITE
    libc-math-smoke-tests
  SRCS
    sqrtl_test.cpp
  HDRS
    SqrtTest.h
  DEPENDS
    libc.src.math.sqrtl
)

add_fp_unittest(
  sqrtf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    sqrtf128_test.cpp
  HDRS
    SqrtTest.h
  DEPENDS
    libc.src.math.sqrtf128
)

add_fp_unittest(
  generic_sqrtf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    generic_sqrtf_test.cpp
  HDRS
    SqrtTest.h
  DEPENDS
    libc.src.__support.FPUtil.generic.sqrt
  COMPILE_OPTIONS
    -O3
)

add_fp_unittest(
  generic_sqrt_test
  SUITE
    libc-math-smoke-tests
  SRCS
    generic_sqrt_test.cpp
  HDRS
    SqrtTest.h
  DEPENDS
    libc.src.__support.FPUtil.generic.sqrt
  COMPILE_OPTIONS
    -O3
)

add_fp_unittest(
  generic_sqrtl_test
  SUITE
    libc-math-smoke-tests
  SRCS
    generic_sqrtl_test.cpp
  HDRS
    SqrtTest.h
  DEPENDS
    libc.src.__support.FPUtil.generic.sqrt
  COMPILE_OPTIONS
    -O3
)

add_fp_unittest(
  generic_sqrtf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    generic_sqrtf128_test.cpp
  HDRS
    SqrtTest.h
  DEPENDS
    # The dependency on sqrtf128 is used to disable the test when float128
    # support is not available.
    libc.src.math.sqrtf128
    libc.src.__support.FPUtil.generic.sqrt
  COMPILE_OPTIONS
    -O3
)

add_fp_unittest(
  remquof_test
  SUITE
    libc-math-smoke-tests
  SRCS
    remquof_test.cpp
  HDRS
    RemQuoTest.h
  DEPENDS
    libc.src.math.remquof
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  remquof128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    remquof128_test.cpp
  HDRS
    RemQuoTest.h
  DEPENDS
    libc.src.math.remquof128
    libc.src.__support.FPUtil.basic_operations
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  remquo_test
  SUITE
    libc-math-smoke-tests
  SRCS
    remquo_test.cpp
  HDRS
    RemQuoTest.h
  DEPENDS
    libc.src.math.remquo
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  remquol_test
  SUITE
    libc-math-smoke-tests
  SRCS
    remquol_test.cpp
  HDRS
    RemQuoTest.h
  DEPENDS
    libc.src.math.remquol
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  remquof16_test
  SUITE
    libc-math-smoke-tests
  SRCS
    remquof16_test.cpp
  HDRS
    RemQuoTest.h
  DEPENDS
    libc.src.math.remquof16
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  hypotf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    hypotf_test.cpp
  HDRS
    HypotTest.h
  DEPENDS
    libc.src.math.hypotf
    libc.src.__support.FPUtil.fp_bits
    libc.src.__support.macros.properties.architectures
)

add_fp_unittest(
  hypot_test
  SUITE
    libc-math-smoke-tests
  SRCS
    hypot_test.cpp
  HDRS
    HypotTest.h
  DEPENDS
    libc.src.math.hypot
    libc.src.__support.FPUtil.fp_bits
    libc.src.__support.macros.properties.architectures
)

add_fp_unittest(
  nanf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    nanf_test.cpp
  DEPENDS
    libc.hdr.signal_macros
    libc.src.math.nanf
    libc.src.__support.FPUtil.fp_bits
    libc.src.__support.macros.sanitizer
  # FIXME: The nan tests currently have death tests, which aren't supported for
  # hermetic tests.
  UNIT_TEST_ONLY
)

add_fp_unittest(
  nan_test
  SUITE
    libc-math-smoke-tests
  SRCS
    nan_test.cpp
  DEPENDS
    libc.hdr.signal_macros
    libc.src.math.nan
    libc.src.__support.FPUtil.fp_bits
    libc.src.__support.macros.sanitizer
  # FIXME: The nan tests currently have death tests, which aren't supported for
  # hermetic tests.
  UNIT_TEST_ONLY
)

add_fp_unittest(
  nanl_test
  SUITE
    libc-math-smoke-tests
  SRCS
    nanl_test.cpp
  DEPENDS
    libc.hdr.signal_macros
    libc.src.math.nanl
    libc.src.__support.FPUtil.fp_bits
    libc.src.__support.macros.sanitizer
  # FIXME: The nan tests currently have death tests, which aren't supported for
  # hermetic tests.
  UNIT_TEST_ONLY
)

add_fp_unittest(
  nanf16_test
  SUITE
    libc-math-smoke-tests
  SRCS
    nanf16_test.cpp
  DEPENDS
    libc.hdr.signal_macros
    libc.src.math.nanf16
    libc.src.__support.FPUtil.fp_bits
    libc.src.__support.macros.sanitizer
  # FIXME: The nan tests currently have death tests, which aren't supported for
  # hermetic tests.
  UNIT_TEST_ONLY
)

add_fp_unittest(
  nanf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    nanf128_test.cpp
  DEPENDS
    libc.hdr.signal_macros
    libc.src.math.nanf128
    libc.src.__support.FPUtil.fp_bits
    libc.src.__support.macros.sanitizer
  # FIXME: The nan tests currently have death tests, which aren't supported for
  # hermetic tests.
  UNIT_TEST_ONLY
)

add_fp_unittest(
  nearbyint_test
  SUITE
    libc-math-smoke-tests
  SRCS
    nearbyint_test.cpp
  HDRS
    NearbyIntTest.h
  DEPENDS
    libc.hdr.fenv_macros
    libc.src.math.nearbyint
)

add_fp_unittest(
  nearbyintf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    nearbyintf_test.cpp
  HDRS
    NearbyIntTest.h
  DEPENDS
    libc.hdr.fenv_macros
    libc.src.math.nearbyintf
)

add_fp_unittest(
  nearbyintl_test
  SUITE
    libc-math-smoke-tests
  SRCS
    nearbyintl_test.cpp
  HDRS
    NearbyIntTest.h
  DEPENDS
    libc.hdr.fenv_macros
    libc.src.math.nearbyintl
)

add_fp_unittest(
  nearbyintf16_test
  SUITE
    libc-math-smoke-tests
  SRCS
    nearbyintf16_test.cpp
  HDRS
    NearbyIntTest.h
  DEPENDS
    libc.hdr.fenv_macros
    libc.src.math.nearbyintf16
)

add_fp_unittest(
  nearbyintf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    nearbyintf128_test.cpp
  HDRS
    NearbyIntTest.h
  DEPENDS
    libc.hdr.fenv_macros
    libc.src.math.nearbyintf128
)

add_fp_unittest(
  nextafter_test
  SUITE
    libc-math-smoke-tests
  SRCS
    nextafter_test.cpp
  HDRS
    NextAfterTest.h
  DEPENDS
    libc.hdr.fenv_macros
    libc.src.math.nextafter
    libc.src.__support.CPP.bit
    libc.src.__support.FPUtil.fenv_impl
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  nextafterf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    nextafterf_test.cpp
  HDRS
    NextAfterTest.h
  DEPENDS
    libc.hdr.fenv_macros
    libc.src.math.nextafterf
    libc.src.__support.CPP.bit
    libc.src.__support.FPUtil.fenv_impl
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  nextafterl_test
  SUITE
    libc-math-smoke-tests
  SRCS
    nextafterl_test.cpp
  HDRS
    NextAfterTest.h
  DEPENDS
    libc.hdr.fenv_macros
    libc.src.math.nextafterl
    libc.src.__support.CPP.bit
    libc.src.__support.FPUtil.fenv_impl
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  nextafterf16_test
  SUITE
    libc-math-smoke-tests
  SRCS
    nextafterf16_test.cpp
  HDRS
    NextAfterTest.h
  DEPENDS
    libc.hdr.fenv_macros
    libc.src.math.nextafterf16
    libc.src.__support.CPP.bit
    libc.src.__support.FPUtil.fenv_impl
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  nextafterf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    nextafterf128_test.cpp
  HDRS
    NextAfterTest.h
  DEPENDS
    libc.hdr.fenv_macros
    libc.src.math.nextafterf128
    libc.src.__support.CPP.bit
    libc.src.__support.FPUtil.fenv_impl
    libc.src.__support.FPUtil.fp_bits
)

# FIXME: These tests are currently spurious for the GPU.
if(NOT LIBC_TARGET_OS_IS_GPU)
  add_fp_unittest(
    nexttoward_test
    SUITE
      libc-math-smoke-tests
    SRCS
      nexttoward_test.cpp
    HDRS
      NextTowardTest.h
    DEPENDS
      libc.hdr.fenv_macros
      libc.src.math.nexttoward
      libc.src.__support.CPP.bit
      libc.src.__support.FPUtil.fenv_impl
      libc.src.__support.FPUtil.fp_bits
  )

  add_fp_unittest(
    nexttowardf_test
    SUITE
      libc-math-smoke-tests
    SRCS
      nexttowardf_test.cpp
    HDRS
      NextTowardTest.h
    DEPENDS
      libc.hdr.fenv_macros
      libc.src.math.nexttowardf
      libc.src.__support.CPP.bit
      libc.src.__support.FPUtil.fenv_impl
      libc.src.__support.FPUtil.fp_bits
  )
endif()

add_fp_unittest(
  nexttowardl_test
  SUITE
    libc-math-smoke-tests
  SRCS
    nexttowardl_test.cpp
  HDRS
    NextTowardTest.h
  DEPENDS
    libc.hdr.fenv_macros
    libc.src.math.nexttowardl
    libc.src.__support.CPP.bit
    libc.src.__support.FPUtil.fenv_impl
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  nexttowardf16_test
  SUITE
    libc-math-smoke-tests
  SRCS
    nexttowardf16_test.cpp
  HDRS
    NextTowardTest.h
  DEPENDS
    libc.hdr.fenv_macros
    libc.src.math.nexttowardf16
    libc.src.__support.CPP.bit
    libc.src.__support.FPUtil.fenv_impl
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  nextdown_test
  SUITE
    libc-math-smoke-tests
  SRCS
    nextdown_test.cpp
  HDRS
    NextDownTest.h
  DEPENDS
    libc.src.math.nextdown
)

add_fp_unittest(
  nextdownf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    nextdownf_test.cpp
  HDRS
    NextDownTest.h
  DEPENDS
    libc.src.math.nextdownf
)

add_fp_unittest(
  nextdownl_test
  SUITE
    libc-math-smoke-tests
  SRCS
    nextdownl_test.cpp
  HDRS
    NextDownTest.h
  DEPENDS
    libc.src.math.nextdownl
)

add_fp_unittest(
  nextdownf16_test
  SUITE
    libc-math-smoke-tests
  SRCS
    nextdownf16_test.cpp
  HDRS
    NextDownTest.h
  DEPENDS
    libc.src.math.nextdownf16
)

add_fp_unittest(
  nextdownf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    nextdownf128_test.cpp
  HDRS
    NextDownTest.h
  DEPENDS
    libc.src.math.nextdownf128
)

add_fp_unittest(
  nextup_test
  SUITE
    libc-math-smoke-tests
  SRCS
    nextup_test.cpp
  HDRS
    NextUpTest.h
  DEPENDS
    libc.src.math.nextup
)

add_fp_unittest(
  nextupf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    nextupf_test.cpp
  HDRS
    NextUpTest.h
  DEPENDS
    libc.src.math.nextupf
)

add_fp_unittest(
  nextupl_test
  SUITE
    libc-math-smoke-tests
  SRCS
    nextupl_test.cpp
  HDRS
    NextUpTest.h
  DEPENDS
    libc.src.math.nextupl
)

add_fp_unittest(
  nextupf16_test
  SUITE
    libc-math-smoke-tests
  SRCS
    nextupf16_test.cpp
  HDRS
    NextUpTest.h
  DEPENDS
    libc.src.math.nextupf16
)

add_fp_unittest(
  nextupf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    nextupf128_test.cpp
  HDRS
    NextUpTest.h
  DEPENDS
    libc.src.math.nextupf128
)

# TODO(lntue): The current implementation of fputil::general::fma<float> is only
# correctly rounded for the default rounding mode round-to-nearest tie-to-even.
add_fp_unittest(
  fmaf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fmaf_test.cpp
  HDRS
    FmaTest.h
  DEPENDS
    libc.src.math.fmaf
    libc.src.__support.macros.properties.types
  FLAGS
    FMA_OPT__ONLY
)

add_fp_unittest(
  fma_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fma_test.cpp
  HDRS
    FmaTest.h
  DEPENDS
    libc.src.math.fma
    libc.src.__support.macros.properties.types
)

add_fp_unittest(
  expm1_test
  SUITE
    libc-math-smoke-tests
  SRCS
    expm1_test.cpp
  DEPENDS
    libc.src.errno.errno
    libc.src.math.expm1
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  expm1f_test
  SUITE
    libc-math-smoke-tests
  SRCS
    expm1f_test.cpp
  DEPENDS
    libc.src.errno.errno
    libc.src.math.expm1f
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  expm1f16_test
  SUITE
    libc-math-smoke-tests
  SRCS
    expm1f16_test.cpp
  DEPENDS
    libc.hdr.errno_macros
    libc.hdr.fenv_macros
    libc.src.errno.errno
    libc.src.math.expm1f16
    libc.src.__support.FPUtil.cast
)

add_fp_unittest(
  log_test
  SUITE
    libc-math-smoke-tests
  SRCS
    log_test.cpp
  DEPENDS
    libc.src.errno.errno
    libc.src.math.log
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  logf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    logf_test.cpp
  DEPENDS
    libc.src.errno.errno
    libc.src.math.logf
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  log2_test
  SUITE
    libc-math-smoke-tests
  SRCS
    log2_test.cpp
  DEPENDS
    libc.src.errno.errno
    libc.src.math.log2
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  log2f_test
  SUITE
    libc-math-smoke-tests
  SRCS
    log2f_test.cpp
  DEPENDS
    libc.src.errno.errno
    libc.src.math.log2f
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  log10_test
  SUITE
    libc-math-smoke-tests
  SRCS
    log10_test.cpp
  DEPENDS
    libc.src.errno.errno
    libc.src.math.log10
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  log10f_test
  SUITE
    libc-math-smoke-tests
  SRCS
    log10f_test.cpp
  DEPENDS
    libc.src.errno.errno
    libc.src.math.log10f
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  log1p_test
  SUITE
    libc-math-smoke-tests
  SRCS
    log1p_test.cpp
  DEPENDS
    libc.src.errno.errno
    libc.src.math.log1p
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  log1pf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    log1pf_test.cpp
  DEPENDS
    libc.src.errno.errno
    libc.src.math.log1pf
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  fmodf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fmodf_test.cpp
  HDRS
    FModTest.h
  DEPENDS
    libc.hdr.fenv_macros
    libc.src.errno.errno
    libc.src.math.fmodf
    libc.src.__support.FPUtil.fenv_impl
  # FIXME: Currently fails on the GPU build.
  UNIT_TEST_ONLY
)

add_fp_unittest(
  fmod_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fmod_test.cpp
  HDRS
    FModTest.h
  DEPENDS
    libc.hdr.fenv_macros
    libc.src.errno.errno
    libc.src.math.fmod
    libc.src.__support.FPUtil.fenv_impl
  # FIXME: Currently fails on the GPU build.
  UNIT_TEST_ONLY
)

add_fp_unittest(
  fmodl_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fmodl_test.cpp
  HDRS
    FModTest.h
  DEPENDS
    libc.hdr.fenv_macros
    libc.src.errno.errno
    libc.src.math.fmodl
    libc.src.__support.FPUtil.fenv_impl
  # FIXME: Currently fails on the GPU build.
  UNIT_TEST_ONLY
)

add_fp_unittest(
  fmodf16_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fmodf16_test.cpp
  HDRS
    FModTest.h
  DEPENDS
    libc.hdr.fenv_macros
    libc.src.errno.errno
    libc.src.math.fmodf16
    libc.src.__support.FPUtil.fenv_impl
  # FIXME: Currently fails on the GPU build.
  UNIT_TEST_ONLY
)

add_fp_unittest(
  fmodf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fmodf128_test.cpp
  HDRS
    FModTest.h
  DEPENDS
    libc.hdr.fenv_macros
    libc.src.errno.errno
    libc.src.math.fmodf128
    libc.src.__support.FPUtil.fenv_impl
  # FIXME: Currently fails on the GPU build.
  UNIT_TEST_ONLY
)

add_fp_unittest(
  coshf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    coshf_test.cpp
  DEPENDS
    libc.src.errno.errno
    libc.src.math.coshf
    libc.src.__support.CPP.array
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  sinhf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    sinhf_test.cpp
  DEPENDS
    libc.src.errno.errno
    libc.src.math.sinhf
    libc.src.__support.CPP.array
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  tanhf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    tanhf_test.cpp
  DEPENDS
    libc.src.math.tanhf
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  atanhf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    atanhf_test.cpp
  DEPENDS
    libc.src.errno.errno
    libc.src.math.atanhf
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  asinhf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    asinhf_test.cpp
  DEPENDS
    libc.src.errno.errno
    libc.src.math.asinhf
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  acoshf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    acoshf_test.cpp
  DEPENDS
    libc.src.errno.errno
    libc.src.math.acoshf
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  asinf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    asinf_test.cpp
  DEPENDS
    libc.src.errno.errno
    libc.src.math.asinf
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  acosf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    acosf_test.cpp
  DEPENDS
    libc.src.errno.errno
    libc.src.math.acosf
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  atanf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    atanf_test.cpp
  DEPENDS
    libc.src.errno.errno
    libc.src.math.atanf
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  atan2f_test
  SUITE
    libc-math-smoke-tests
  SRCS
    atan2f_test.cpp
  DEPENDS
    libc.src.errno.errno
    libc.src.math.atan2f
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  atan2_test
  SUITE
    libc-math-smoke-tests
  SRCS
    atan2_test.cpp
  DEPENDS
    libc.src.math.atan2
)

add_fp_unittest(
  scalbln_test
  SUITE
    libc-math-smoke-tests
  SRCS
    scalbln_test.cpp
  HDRS
    ScalbnTest.h
  DEPENDS
    libc.src.math.scalbln
    libc.src.__support.CPP.limits
    libc.src.__support.FPUtil.fp_bits
    libc.src.__support.FPUtil.normal_float
)

add_fp_unittest(
  scalblnf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    scalblnf_test.cpp
  HDRS
    ScalbnTest.h
  DEPENDS
    libc.src.math.scalblnf
    libc.src.__support.CPP.limits
    libc.src.__support.FPUtil.fp_bits
    libc.src.__support.FPUtil.normal_float
)

add_fp_unittest(
  scalblnl_test
  SUITE
    libc-math-smoke-tests
  SRCS
    scalblnl_test.cpp
  HDRS
    ScalbnTest.h
  DEPENDS
    libc.src.math.scalblnl
    libc.src.__support.CPP.limits
    libc.src.__support.FPUtil.fp_bits
    libc.src.__support.FPUtil.normal_float
)

add_fp_unittest(
  scalblnf16_test
  SUITE
    libc-math-smoke-tests
  SRCS
    scalblnf16_test.cpp
  HDRS
    ScalbnTest.h
  DEPENDS
    libc.src.math.scalblnf16
    libc.src.__support.CPP.limits
    libc.src.__support.FPUtil.fp_bits
    libc.src.__support.FPUtil.normal_float
)

add_fp_unittest(
  scalblnf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    scalblnf128_test.cpp
  HDRS
    ScalbnTest.h
  DEPENDS
    libc.src.math.scalblnf128
    libc.src.__support.CPP.limits
    libc.src.__support.FPUtil.fp_bits
    libc.src.__support.FPUtil.normal_float
)

add_fp_unittest(
  scalbn_test
  SUITE
    libc-math-smoke-tests
  SRCS
    scalbn_test.cpp
  HDRS
    ScalbnTest.h
  DEPENDS
    libc.src.math.scalbn
    libc.src.__support.CPP.limits
    libc.src.__support.FPUtil.fp_bits
    libc.src.__support.FPUtil.normal_float
)

add_fp_unittest(
  scalbnf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    scalbnf_test.cpp
  HDRS
    ScalbnTest.h
  DEPENDS
    libc.src.math.scalbnf
    libc.src.__support.CPP.limits
    libc.src.__support.FPUtil.fp_bits
    libc.src.__support.FPUtil.normal_float
)

add_fp_unittest(
  scalbnl_test
  SUITE
    libc-math-smoke-tests
  SRCS
    scalbnl_test.cpp
  HDRS
    ScalbnTest.h
  DEPENDS
    libc.src.math.scalbnl
    libc.src.__support.CPP.limits
    libc.src.__support.FPUtil.fp_bits
    libc.src.__support.FPUtil.normal_float
)

add_fp_unittest(
  scalbnf16_test
  SUITE
    libc-math-smoke-tests
  SRCS
    scalbnf16_test.cpp
  HDRS
    ScalbnTest.h
  DEPENDS
    libc.src.math.scalbnf16
    libc.src.__support.CPP.limits
    libc.src.__support.FPUtil.fp_bits
    libc.src.__support.FPUtil.normal_float
)

add_fp_unittest(
  scalbnf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    scalbnf128_test.cpp
  HDRS
    ScalbnTest.h
  DEPENDS
    libc.src.math.scalbnf128
    libc.src.__support.CPP.limits
    libc.src.__support.FPUtil.fp_bits
    libc.src.__support.FPUtil.normal_float
)

add_fp_unittest(
  erff_test
  SUITE
    libc-math-smoke-tests
  SRCS
    erff_test.cpp
  DEPENDS
    libc.src.math.erff
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  pow_test
  SUITE
    libc-math-smoke-tests
  SRCS
    pow_test.cpp
  DEPENDS
    libc.hdr.fenv_macros
    libc.src.math.pow
)

add_fp_unittest(
  powf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    powf_test.cpp
  DEPENDS
    libc.src.math.powf
    libc.src.__support.FPUtil.fp_bits
)

add_fp_unittest(
  totalorder_test
  SUITE
    libc-math-smoke-tests
  SRCS
    totalorder_test.cpp
  HDRS
    TotalOrderTest.h
  DEPENDS
    libc.src.math.totalorder
)

add_fp_unittest(
  totalorderf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    totalorderf_test.cpp
  HDRS
    TotalOrderTest.h
  DEPENDS
    libc.src.math.totalorderf
)

add_fp_unittest(
  totalorderl_test
  SUITE
    libc-math-smoke-tests
  SRCS
    totalorderl_test.cpp
  HDRS
    TotalOrderTest.h
  DEPENDS
    libc.src.math.totalorderl
)

add_fp_unittest(
  totalorderf16_test
  SUITE
    libc-math-smoke-tests
  SRCS
    totalorderf16_test.cpp
  HDRS
    TotalOrderTest.h
  DEPENDS
    libc.src.math.totalorderf16
)

add_fp_unittest(
  totalorderf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    totalorderf128_test.cpp
  HDRS
    TotalOrderTest.h
  DEPENDS
    libc.src.math.totalorderf128
)

add_fp_unittest(
  totalordermag_test
  SUITE
    libc-math-smoke-tests
  SRCS
    totalordermag_test.cpp
  HDRS
    TotalOrderMagTest.h
  DEPENDS
    libc.src.math.totalordermag
)

add_fp_unittest(
  totalordermagf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    totalordermagf_test.cpp
  HDRS
    TotalOrderMagTest.h
  DEPENDS
    libc.src.math.totalordermagf
)

add_fp_unittest(
  totalordermagl_test
  SUITE
    libc-math-smoke-tests
  SRCS
    totalordermagl_test.cpp
  HDRS
    TotalOrderMagTest.h
  DEPENDS
    libc.src.math.totalordermagl
)

add_fp_unittest(
  totalordermagf16_test
  SUITE
    libc-math-smoke-tests
  SRCS
    totalordermagf16_test.cpp
  HDRS
    TotalOrderMagTest.h
  DEPENDS
    libc.src.math.totalordermagf16
)

add_fp_unittest(
  totalordermagf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    totalordermagf128_test.cpp
  HDRS
    TotalOrderMagTest.h
  DEPENDS
    libc.src.math.totalordermagf128
)

add_fp_unittest(
  getpayload_test
  SUITE
    libc-math-smoke-tests
  SRCS
    getpayload_test.cpp
  HDRS
    GetPayloadTest.h
  DEPENDS
    libc.src.math.getpayload
)

add_fp_unittest(
  getpayloadf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    getpayloadf_test.cpp
  HDRS
    GetPayloadTest.h
  DEPENDS
    libc.src.math.getpayloadf
)

add_fp_unittest(
  getpayloadl_test
  SUITE
    libc-math-smoke-tests
  SRCS
    getpayloadl_test.cpp
  HDRS
    GetPayloadTest.h
  DEPENDS
    libc.src.math.getpayloadl
)

add_fp_unittest(
  getpayloadf16_test
  SUITE
    libc-math-smoke-tests
  SRCS
    getpayloadf16_test.cpp
  HDRS
    GetPayloadTest.h
  DEPENDS
    libc.src.math.getpayloadf16
)

add_fp_unittest(
  getpayloadf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    getpayloadf128_test.cpp
  HDRS
    GetPayloadTest.h
  DEPENDS
    libc.src.math.getpayloadf128
)

add_fp_unittest(
  setpayload_test
  SUITE
    libc-math-smoke-tests
  SRCS
    setpayload_test.cpp
  HDRS
    SetPayloadTest.h
  DEPENDS
    libc.src.math.setpayload
)

add_fp_unittest(
  setpayloadf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    setpayloadf_test.cpp
  HDRS
    SetPayloadTest.h
  DEPENDS
    libc.src.math.setpayloadf
)

add_fp_unittest(
  setpayloadl_test
  SUITE
    libc-math-smoke-tests
  SRCS
    setpayloadl_test.cpp
  HDRS
    SetPayloadTest.h
  DEPENDS
    libc.src.math.setpayloadl
)

add_fp_unittest(
  setpayloadf16_test
  SUITE
    libc-math-smoke-tests
  SRCS
    setpayloadf16_test.cpp
  HDRS
    SetPayloadTest.h
  DEPENDS
    libc.src.math.setpayloadf16
)

add_fp_unittest(
  setpayloadf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    setpayloadf128_test.cpp
  HDRS
    SetPayloadTest.h
  DEPENDS
    libc.src.math.setpayloadf128
)

add_fp_unittest(
  setpayloadsig_test
  SUITE
    libc-math-smoke-tests
  SRCS
    setpayloadsig_test.cpp
  HDRS
    SetPayloadSigTest.h
  DEPENDS
    libc.src.math.setpayloadsig
)

add_fp_unittest(
  setpayloadsigf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    setpayloadsigf_test.cpp
  HDRS
    SetPayloadSigTest.h
  DEPENDS
    libc.src.math.setpayloadsigf
)

add_fp_unittest(
  setpayloadsigl_test
  SUITE
    libc-math-smoke-tests
  SRCS
    setpayloadsigl_test.cpp
  HDRS
    SetPayloadSigTest.h
  DEPENDS
    libc.src.math.setpayloadsigl
)

add_fp_unittest(
  setpayloadsigf16_test
  SUITE
    libc-math-smoke-tests
  SRCS
    setpayloadsigf16_test.cpp
  HDRS
    SetPayloadSigTest.h
  DEPENDS
    libc.src.math.setpayloadsigf16
)

add_fp_unittest(
  setpayloadsigf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    setpayloadsigf128_test.cpp
  HDRS
    SetPayloadSigTest.h
  DEPENDS
    libc.src.math.setpayloadsigf128
)


add_fp_unittest(
  f16add_test
  SUITE
    libc-math-smoke-tests
  SRCS
    f16add_test.cpp
  HDRS
    AddTest.h
  DEPENDS
    libc.hdr.errno_macros
    libc.hdr.fenv_macros
    libc.src.math.f16add
    libc.src.__support.macros.properties.os
)

add_fp_unittest(
  f16addf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    f16addf_test.cpp
  HDRS
    AddTest.h
  DEPENDS
    libc.hdr.errno_macros
    libc.hdr.fenv_macros
    libc.src.math.f16addf
    libc.src.__support.macros.properties.os
)

add_fp_unittest(
  f16addl_test
  SUITE
    libc-math-smoke-tests
  SRCS
    f16addl_test.cpp
  HDRS
    AddTest.h
  DEPENDS
    libc.hdr.errno_macros
    libc.hdr.fenv_macros
    libc.src.math.f16addl
    libc.src.__support.macros.properties.os
)

add_fp_unittest(
  f16addf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    f16addf128_test.cpp
  HDRS
    AddTest.h
  DEPENDS
    libc.hdr.errno_macros
    libc.hdr.fenv_macros
    libc.src.math.f16addf128
    libc.src.__support.macros.properties.os
)

add_fp_unittest(
  f16sub_test
  SUITE
    libc-math-smoke-tests
  SRCS
    f16sub_test.cpp
  HDRS
    SubTest.h
  DEPENDS
    libc.hdr.errno_macros
    libc.hdr.fenv_macros
    libc.src.math.f16sub
    libc.src.__support.macros.properties.os
)

add_fp_unittest(
  f16subf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    f16subf_test.cpp
  HDRS
    SubTest.h
  DEPENDS
    libc.hdr.errno_macros
    libc.hdr.fenv_macros
    libc.src.math.f16subf
    libc.src.__support.macros.properties.os
)

add_fp_unittest(
  f16subl_test
  SUITE
    libc-math-smoke-tests
  SRCS
    f16subl_test.cpp
  HDRS
    SubTest.h
  DEPENDS
    libc.hdr.errno_macros
    libc.hdr.fenv_macros
    libc.src.math.f16subl
    libc.src.__support.macros.properties.os
)

add_fp_unittest(
  f16subf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    f16subf128_test.cpp
  HDRS
    SubTest.h
  DEPENDS
    libc.hdr.errno_macros
    libc.hdr.fenv_macros
    libc.src.math.f16subf128
    libc.src.__support.macros.properties.os
)

add_fp_unittest(
  f16div_test
  SUITE
    libc-math-smoke-tests
  SRCS
    f16div_test.cpp
  HDRS
    DivTest.h
  DEPENDS
    libc.hdr.errno_macros
    libc.hdr.fenv_macros
    libc.src.math.f16div
)

add_fp_unittest(
  f16divf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    f16divf_test.cpp
  HDRS
    DivTest.h
  DEPENDS
    libc.hdr.errno_macros
    libc.hdr.fenv_macros
    libc.src.math.f16divf
)

add_fp_unittest(
  f16divl_test
  SUITE
    libc-math-smoke-tests
  SRCS
    f16divl_test.cpp
  HDRS
    DivTest.h
  DEPENDS
    libc.hdr.errno_macros
    libc.hdr.fenv_macros
    libc.src.math.f16divl
)

add_fp_unittest(
  f16divf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    f16divf128_test.cpp
  HDRS
    DivTest.h
  DEPENDS
    libc.hdr.errno_macros
    libc.hdr.fenv_macros
    libc.src.math.f16divf128
)

add_fp_unittest(
  f16fma_test
  SUITE
    libc-math-smoke-tests
  SRCS
    f16fma_test.cpp
  HDRS
    FmaTest.h
  DEPENDS
    libc.src.math.f16fma
    libc.src.__support.macros.properties.types
)

add_fp_unittest(
  f16fmaf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    f16fmaf_test.cpp
  HDRS
    FmaTest.h
  DEPENDS
    libc.src.math.f16fmaf
    libc.src.__support.macros.properties.types
)

add_fp_unittest(
  f16fmal_test
  SUITE
    libc-math-smoke-tests
  SRCS
    f16fmal_test.cpp
  HDRS
    FmaTest.h
  DEPENDS
    libc.src.math.f16fmal
    libc.src.__support.macros.properties.types
)

add_fp_unittest(
  f16fmaf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    f16fmaf128_test.cpp
  HDRS
    FmaTest.h
  DEPENDS
    libc.src.math.f16fmaf128
    libc.src.__support.macros.properties.types
)

add_fp_unittest(
  f16sqrt_test
  SUITE
    libc-math-smoke-tests
  SRCS
    f16sqrt_test.cpp
  HDRS
    SqrtTest.h
  DEPENDS
    libc.src.math.f16sqrt
)

add_fp_unittest(
  f16sqrtf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    f16sqrtf_test.cpp
  HDRS
    SqrtTest.h
  DEPENDS
    libc.src.math.f16sqrtf
)

add_fp_unittest(
  f16sqrtl_test
  SUITE
    libc-math-smoke-tests
  SRCS
    f16sqrtl_test.cpp
  HDRS
    SqrtTest.h
  DEPENDS
    libc.src.math.f16sqrtl
)

add_fp_unittest(
  f16sqrtf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    f16sqrtf128_test.cpp
  HDRS
    SqrtTest.h
  DEPENDS
    libc.src.math.f16sqrtf128
)

add_fp_unittest(
  fdiv_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fdiv_test.cpp
  HDRS
    DivTest.h
  DEPENDS
    libc.hdr.errno_macros
    libc.hdr.fenv_macros
    libc.src.math.fdiv
)

add_fp_unittest(
  fdivl_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fdivl_test.cpp
  HDRS
    DivTest.h
  DEPENDS
    libc.hdr.errno_macros
    libc.hdr.fenv_macros
    libc.src.math.fdivl
)

add_fp_unittest(
  fdivf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fdivf128_test.cpp
  HDRS
    DivTest.h
  DEPENDS
    libc.hdr.errno_macros
    libc.hdr.fenv_macros
    libc.src.math.fdivf128
)

add_fp_unittest(
  ffma_test
  SUITE
    libc-math-smoke-tests
  SRCS
    ffma_test.cpp
  HDRS
    FmaTest.h
  DEPENDS
    libc.src.math.ffma
    libc.src.__support.macros.properties.types
)

add_fp_unittest(
  ffmal_test
  SUITE
    libc-math-smoke-tests
  SRCS
    ffmal_test.cpp
  HDRS
    FmaTest.h
  DEPENDS
    libc.src.math.ffmal
    libc.src.__support.macros.properties.types
)

add_fp_unittest(
  ffmaf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    ffmaf128_test.cpp
  HDRS
    FmaTest.h
  DEPENDS
    libc.src.math.ffmaf128
    libc.src.__support.macros.properties.types
)

add_fp_unittest(
  fsqrt_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fsqrt_test.cpp
  HDRS
    SqrtTest.h
  DEPENDS
    libc.src.math.fsqrt
)


add_fp_unittest(
  fsqrtl_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fsqrtl_test.cpp
  HDRS
    SqrtTest.h
  DEPENDS
    libc.src.math.fsqrtl
)

add_fp_unittest(
  fsqrtf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fsqrtf128_test.cpp
  HDRS
    SqrtTest.h
  DEPENDS
    libc.src.math.fsqrtf128
)

add_fp_unittest(
  fsub_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fsub_test.cpp
  HDRS
    SubTest.h
  DEPENDS
    libc.hdr.errno_macros
    libc.hdr.fenv_macros
    libc.src.math.fsub
    libc.src.__support.macros.properties.os
)

add_fp_unittest(
  fsubl_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fsubl_test.cpp
  HDRS
    SubTest.h
  DEPENDS
    libc.hdr.errno_macros
    libc.hdr.fenv_macros
    libc.src.math.fsubl
    libc.src.__support.macros.properties.os
)

add_fp_unittest(
  fsubf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    fsubf128_test.cpp
  HDRS
    SubTest.h
  DEPENDS
    libc.hdr.errno_macros
    libc.hdr.fenv_macros
    libc.src.math.fsubf128
    libc.src.__support.macros.properties.os
)

add_fp_unittest(
  dsqrtl_test
  SUITE
    libc-math-smoke-tests
  SRCS
    dsqrtl_test.cpp
  HDRS
    SqrtTest.h
  DEPENDS
    libc.src.math.dsqrtl
)

add_fp_unittest(
  dsqrtf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    dsqrtf128_test.cpp
  HDRS
    SqrtTest.h
  DEPENDS
    libc.src.math.dsqrtf128
)

add_fp_unittest(
  sin_test
  SUITE
    libc-math-smoke-tests
  SRCS
    sin_test.cpp
  DEPENDS
    libc.src.math.sin
)

add_fp_unittest(
  cos_test
  SUITE
    libc-math-smoke-tests
  SRCS
    cos_test.cpp
  DEPENDS
    libc.src.math.cos
)

add_fp_unittest(
  sincos_test
  SUITE
    libc-math-smoke-tests
  SRCS
    sincos_test.cpp
  DEPENDS
    libc.src.math.sincos
)

add_fp_unittest(
  tan_test
  SUITE
    libc-math-smoke-tests
  SRCS
    tan_test.cpp
  DEPENDS
    libc.src.math.tan
)

add_fp_unittest(
  cbrtf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    cbrtf_test.cpp
  DEPENDS
    libc.src.math.cbrtf
)

add_fp_unittest(
  cbrt_test
  SUITE
    libc-math-smoke-tests
  SRCS
    cbrt_test.cpp
  DEPENDS
    libc.src.math.cbrt
)

add_fp_unittest(
  dmull_test
  SUITE
    libc-math-smoke-tests
  SRCS
    dmull_test.cpp
  HDRS
    MulTest.h
  DEPENDS
    libc.hdr.errno_macros
    libc.hdr.fenv_macros
    libc.src.__support.FPUtil.basic_operations
    libc.src.math.dmull
)

add_fp_unittest(
  f16mul_test
  SUITE
    libc-math-smoke-tests
  SRCS
    f16mul_test.cpp
  HDRS
    MulTest.h
  DEPENDS
    libc.hdr.errno_macros
    libc.hdr.fenv_macros
    libc.src.__support.FPUtil.basic_operations
    libc.src.math.f16mul
)

add_fp_unittest(
  f16mulf_test
  SUITE
    libc-math-smoke-tests
  SRCS
    f16mulf_test.cpp
  HDRS
    MulTest.h
  DEPENDS
    libc.hdr.errno_macros
    libc.hdr.fenv_macros
    libc.src.__support.FPUtil.basic_operations
    libc.src.math.f16mulf
)

add_fp_unittest(
  f16mull_test
  SUITE
    libc-math-smoke-tests
  SRCS
    f16mull_test.cpp
  HDRS
    MulTest.h
  DEPENDS
    libc.hdr.errno_macros
    libc.hdr.fenv_macros
    libc.src.__support.FPUtil.basic_operations
    libc.src.math.f16mull
)

add_fp_unittest(
  f16mulf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    f16mulf128_test.cpp
  HDRS
    MulTest.h
  DEPENDS
    libc.hdr.errno_macros
    libc.hdr.fenv_macros
    libc.src.__support.FPUtil.basic_operations
    libc.src.math.f16mulf128
)

add_fp_unittest(
  daddl_test
  SUITE
    libc-math-smoke-tests
  SRCS
    daddl_test.cpp
  HDRS
    AddTest.h
  DEPENDS
    libc.hdr.errno_macros
    libc.hdr.fenv_macros
    libc.src.math.daddl
    libc.src.__support.macros.properties.os
)

add_fp_unittest(
  daddf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    daddf128_test.cpp
  HDRS
    AddTest.h
  DEPENDS
    libc.hdr.errno_macros
    libc.hdr.fenv_macros
    libc.src.math.daddf128
    libc.src.__support.macros.properties.os
)

add_fp_unittest(
  ddivl_test
  SUITE
    libc-math-smoke-tests
  SRCS
    ddivl_test.cpp
  HDRS
    DivTest.h
  DEPENDS
    libc.src.math.ddivl
)

add_fp_unittest(
  ddivf128_test
  SUITE
    libc-math-smoke-tests
  SRCS
    ddivf128_test.cpp
  HDRS
    DivTest.h
  DEPENDS
    libc.src.math.ddivf128
)