blob: 81702260ab476f03752b7dc9331b7a9fc6a73873 [file]
//===-- Unittests for signbit macro ---------------------------------------===//
//
// 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 "include/llvm-libc-macros/math-function-macros.h"
#include "test/UnitTest/LibcCTest.h"
// check if macro is defined
#ifndef signbit
#error "signbit macro is not defined"
#else
TEST(signbit) {
EXPECT_FALSE(signbit(1.0f));
EXPECT_FALSE(signbit(1.0));
EXPECT_FALSE(signbit(1.0L));
EXPECT_TRUE(signbit(-1.0f));
EXPECT_TRUE(signbit(-1.0));
EXPECT_TRUE(signbit(-1.0L));
}
#endif