[flang] Accept polymorphic component element in storage_size
[llvm-project.git] / libc / test / src / math / cos_test.cpp
blob6695272f52bf2db4a506c1a91333a013d443fd9d
1 //===-- Unittests for cos -------------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #include "src/math/cos.h"
10 #include "test/UnitTest/FPMatcher.h"
11 #include "test/UnitTest/Test.h"
12 #include "utils/MPFRWrapper/MPFRUtils.h"
14 #include <math.h>
16 namespace mpfr = __llvm_libc::testing::mpfr;
18 DECLARE_SPECIAL_CONSTANTS(double)
20 TEST(LlvmLibccosTest, Range) {
21 static constexpr double _2pi = 6.283185307179586;
22 constexpr UIntType COUNT = 10000000;
23 constexpr UIntType STEP = UIntType(-1) / COUNT;
24 for (UIntType i = 0, v = 0; i <= COUNT; ++i, v += STEP) {
25 double x = double(FPBits(v));
26 // TODO: Expand the range of testing after range reduction is implemented.
27 if (isnan(x) || isinf(x) || x > _2pi || x < -_2pi)
28 continue;
30 ASSERT_MPFR_MATCH(mpfr::Operation::Cos, x, __llvm_libc::cos(x), 1.0);