[libc-commits] [PATCH] D159477: [libc][math] Extract non-MPFR math tests into libc-math-smoke-tests.

Tue Ly via Phabricator via libc-commits libc-commits at lists.llvm.org
Tue Sep 19 09:11:16 PDT 2023


This revision was automatically updated to reflect the committed changes.
Closed by commit rG84c899b2350f: [libc][math] Extract non-MPFR math tests into libc-math-smoke-tests. (authored by lntue).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D159477/new/

https://reviews.llvm.org/D159477

Files:
  libc/src/math/docs/add_math_function.md
  libc/test/src/math/CMakeLists.txt
  libc/test/src/math/generic/CMakeLists.txt
  libc/test/src/math/smoke/CMakeLists.txt
  libc/test/src/math/smoke/CeilTest.h
  libc/test/src/math/smoke/CopySignTest.h
  libc/test/src/math/smoke/FAbsTest.h
  libc/test/src/math/smoke/FDimTest.h
  libc/test/src/math/smoke/FMaxTest.h
  libc/test/src/math/smoke/FMinTest.h
  libc/test/src/math/smoke/FModTest.h
  libc/test/src/math/smoke/FloorTest.h
  libc/test/src/math/smoke/FmaTest.h
  libc/test/src/math/smoke/FrexpTest.h
  libc/test/src/math/smoke/HypotTest.h
  libc/test/src/math/smoke/ILogbTest.h
  libc/test/src/math/smoke/LdExpTest.h
  libc/test/src/math/smoke/LogbTest.h
  libc/test/src/math/smoke/ModfTest.h
  libc/test/src/math/smoke/NextAfterTest.h
  libc/test/src/math/smoke/RIntTest.h
  libc/test/src/math/smoke/RemQuoTest.h
  libc/test/src/math/smoke/RoundTest.h
  libc/test/src/math/smoke/RoundToIntegerTest.h
  libc/test/src/math/smoke/ScalbnTest.h
  libc/test/src/math/smoke/SqrtTest.h
  libc/test/src/math/smoke/TruncTest.h
  libc/test/src/math/smoke/acosf_test.cpp
  libc/test/src/math/smoke/acoshf_test.cpp
  libc/test/src/math/smoke/asinf_test.cpp
  libc/test/src/math/smoke/asinhf_test.cpp
  libc/test/src/math/smoke/atanf_test.cpp
  libc/test/src/math/smoke/atanhf_test.cpp
  libc/test/src/math/smoke/ceil_test.cpp
  libc/test/src/math/smoke/ceilf_test.cpp
  libc/test/src/math/smoke/ceill_test.cpp
  libc/test/src/math/smoke/copysign_test.cpp
  libc/test/src/math/smoke/copysignf_test.cpp
  libc/test/src/math/smoke/copysignl_test.cpp
  libc/test/src/math/smoke/cosf_test.cpp
  libc/test/src/math/smoke/coshf_test.cpp
  libc/test/src/math/smoke/erff_test.cpp
  libc/test/src/math/smoke/exp10_test.cpp
  libc/test/src/math/smoke/exp10f_test.cpp
  libc/test/src/math/smoke/exp2_test.cpp
  libc/test/src/math/smoke/exp2f_test.cpp
  libc/test/src/math/smoke/exp_test.cpp
  libc/test/src/math/smoke/expf_test.cpp
  libc/test/src/math/smoke/expm1f_test.cpp
  libc/test/src/math/smoke/fabs_test.cpp
  libc/test/src/math/smoke/fabsf_test.cpp
  libc/test/src/math/smoke/fabsl_test.cpp
  libc/test/src/math/smoke/fdim_test.cpp
  libc/test/src/math/smoke/fdimf_test.cpp
  libc/test/src/math/smoke/fdiml_test.cpp
  libc/test/src/math/smoke/floor_test.cpp
  libc/test/src/math/smoke/floorf_test.cpp
  libc/test/src/math/smoke/floorl_test.cpp
  libc/test/src/math/smoke/fma_test.cpp
  libc/test/src/math/smoke/fmaf_test.cpp
  libc/test/src/math/smoke/fmax_test.cpp
  libc/test/src/math/smoke/fmaxf_test.cpp
  libc/test/src/math/smoke/fmaxl_test.cpp
  libc/test/src/math/smoke/fmin_test.cpp
  libc/test/src/math/smoke/fminf_test.cpp
  libc/test/src/math/smoke/fminl_test.cpp
  libc/test/src/math/smoke/fmod_test.cpp
  libc/test/src/math/smoke/fmodf_test.cpp
  libc/test/src/math/smoke/frexp_test.cpp
  libc/test/src/math/smoke/frexpf_test.cpp
  libc/test/src/math/smoke/frexpl_test.cpp
  libc/test/src/math/smoke/generic_sqrt_test.cpp
  libc/test/src/math/smoke/generic_sqrtf_test.cpp
  libc/test/src/math/smoke/generic_sqrtl_test.cpp
  libc/test/src/math/smoke/hypot_test.cpp
  libc/test/src/math/smoke/hypotf_test.cpp
  libc/test/src/math/smoke/ilogb_test.cpp
  libc/test/src/math/smoke/ilogbf_test.cpp
  libc/test/src/math/smoke/ilogbl_test.cpp
  libc/test/src/math/smoke/ldexp_test.cpp
  libc/test/src/math/smoke/ldexpf_test.cpp
  libc/test/src/math/smoke/ldexpl_test.cpp
  libc/test/src/math/smoke/llrint_test.cpp
  libc/test/src/math/smoke/llrintf_test.cpp
  libc/test/src/math/smoke/llrintl_test.cpp
  libc/test/src/math/smoke/llround_test.cpp
  libc/test/src/math/smoke/llroundf_test.cpp
  libc/test/src/math/smoke/llroundl_test.cpp
  libc/test/src/math/smoke/log10_test.cpp
  libc/test/src/math/smoke/log10f_test.cpp
  libc/test/src/math/smoke/log1p_test.cpp
  libc/test/src/math/smoke/log1pf_test.cpp
  libc/test/src/math/smoke/log2_test.cpp
  libc/test/src/math/smoke/log2f_test.cpp
  libc/test/src/math/smoke/log_test.cpp
  libc/test/src/math/smoke/logb_test.cpp
  libc/test/src/math/smoke/logbf_test.cpp
  libc/test/src/math/smoke/logbl_test.cpp
  libc/test/src/math/smoke/logf_test.cpp
  libc/test/src/math/smoke/lrint_test.cpp
  libc/test/src/math/smoke/lrintf_test.cpp
  libc/test/src/math/smoke/lrintl_test.cpp
  libc/test/src/math/smoke/lround_test.cpp
  libc/test/src/math/smoke/lroundf_test.cpp
  libc/test/src/math/smoke/lroundl_test.cpp
  libc/test/src/math/smoke/modf_test.cpp
  libc/test/src/math/smoke/modff_test.cpp
  libc/test/src/math/smoke/modfl_test.cpp
  libc/test/src/math/smoke/nextafter_test.cpp
  libc/test/src/math/smoke/nextafterf_test.cpp
  libc/test/src/math/smoke/nextafterl_test.cpp
  libc/test/src/math/smoke/remquo_test.cpp
  libc/test/src/math/smoke/remquof_test.cpp
  libc/test/src/math/smoke/remquol_test.cpp
  libc/test/src/math/smoke/rint_test.cpp
  libc/test/src/math/smoke/rintf_test.cpp
  libc/test/src/math/smoke/rintl_test.cpp
  libc/test/src/math/smoke/round_test.cpp
  libc/test/src/math/smoke/roundf_test.cpp
  libc/test/src/math/smoke/roundl_test.cpp
  libc/test/src/math/smoke/scalbn_test.cpp
  libc/test/src/math/smoke/scalbnf_test.cpp
  libc/test/src/math/smoke/scalbnl_test.cpp
  libc/test/src/math/smoke/sincosf_test.cpp
  libc/test/src/math/smoke/sinf_test.cpp
  libc/test/src/math/smoke/sinhf_test.cpp
  libc/test/src/math/smoke/sqrt_test.cpp
  libc/test/src/math/smoke/sqrtf_test.cpp
  libc/test/src/math/smoke/sqrtl_test.cpp
  libc/test/src/math/smoke/tanf_test.cpp
  libc/test/src/math/smoke/tanhf_test.cpp
  libc/test/src/math/smoke/trunc_test.cpp
  libc/test/src/math/smoke/truncf_test.cpp
  libc/test/src/math/smoke/truncl_test.cpp

-------------- next part --------------
A non-text attachment was scrubbed...
Name: D159477.557052.patch
Type: text/x-patch
Size: 231069 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libc-commits/attachments/20230919/d268b1b2/attachment-0001.bin>


More information about the libc-commits mailing list