blob: a98b9319b562779be2021c603b4cb9d8d83372b1 [file] [log] [blame] [edit]
//===-- Unittests for sincos ----------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#include "hdr/errno_macros.h"
#include "src/math/sincos.h"
#include "test/UnitTest/FPMatcher.h"
#include "test/UnitTest/Test.h"
using LlvmLibcSincosTest = LIBC_NAMESPACE::testing::FPTest<double>;
TEST_F(LlvmLibcSincosTest, SpecialNumbers) {
double sin_x, cos_x;
LIBC_NAMESPACE::sincos(sNaN, &sin_x, &cos_x);
EXPECT_FP_EQ_ALL_ROUNDING(aNaN, cos_x);
EXPECT_FP_EQ_ALL_ROUNDING(aNaN, sin_x);
EXPECT_MATH_ERRNO(0);
LIBC_NAMESPACE::sincos(aNaN, &sin_x, &cos_x);
EXPECT_FP_EQ_ALL_ROUNDING(aNaN, cos_x);
EXPECT_FP_EQ_ALL_ROUNDING(aNaN, sin_x);
LIBC_NAMESPACE::sincos(zero, &sin_x, &cos_x);
EXPECT_FP_EQ_ALL_ROUNDING(1.0, cos_x);
EXPECT_FP_EQ_ALL_ROUNDING(0.0, sin_x);
LIBC_NAMESPACE::sincos(neg_zero, &sin_x, &cos_x);
EXPECT_FP_EQ_ALL_ROUNDING(1.0, cos_x);
EXPECT_FP_EQ_ALL_ROUNDING(neg_zero, sin_x);
LIBC_NAMESPACE::sincos(inf, &sin_x, &cos_x);
EXPECT_FP_EQ_ALL_ROUNDING(aNaN, cos_x);
EXPECT_FP_EQ_ALL_ROUNDING(aNaN, sin_x);
EXPECT_MATH_ERRNO(EDOM);
LIBC_NAMESPACE::sincos(neg_inf, &sin_x, &cos_x);
EXPECT_FP_EQ_ALL_ROUNDING(aNaN, cos_x);
EXPECT_FP_EQ_ALL_ROUNDING(aNaN, sin_x);
EXPECT_MATH_ERRNO(EDOM);
LIBC_NAMESPACE::sincos(0x1.0p-28, &sin_x, &cos_x);
EXPECT_FP_EQ(1.0, cos_x);
EXPECT_FP_EQ(0x1.0p-28, sin_x);
}