Files
clang-p2996/libc/test/include/signbit_test.c
Akiel 3604c23dfc [libc][math] implement signbit and math macro unit tests (#97791)
This PR resolves #96322 and implements the `signbit` macro under a new
header `generic-math-macros.h`. This also removed the `TODO` in
`math-macros.h` and moves `isfinite`, `isinf`, and `isnan` to the same
generic maths header. Finally, a test file
`generic-math-macros_test.cpp` that adds coverage to the above 4 macros.

Fixes #96322.
2024-07-13 23:01:36 -04:00

26 lines
735 B
C

//===-- 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.
// SPDSList-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#include "include/llvm-libc-macros/math-function-macros.h"
#include <assert.h>
// check if macro is defined
#ifndef signbit
#error "signbit macro is not defined"
#else
int main(void) {
assert(!signbit(1.0f));
assert(!signbit(1.0));
assert(!signbit(1.0L));
assert(signbit(-1.0f));
assert(signbit(-1.0));
assert(signbit(-1.0L));
return 0;
}
#endif