blob: 1b3884a7337fe7dcc935d1e54d3073a725aa7c4b [file] [log] [blame]
//===-- Unittests for feupdateenv -----------------------------------------===//
//
// 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 "src/fenv/feupdateenv.h"
#include "src/__support/FPUtil/FEnvImpl.h"
#include "test/UnitTest/Test.h"
#include <fenv.h>
#include <signal.h>
TEST(LlvmLibcFEnvTest, UpdateEnvTest) {
__llvm_libc::fputil::disable_except(FE_ALL_EXCEPT);
__llvm_libc::fputil::clear_except(FE_ALL_EXCEPT);
fenv_t env;
ASSERT_EQ(__llvm_libc::fputil::get_env(&env), 0);
__llvm_libc::fputil::set_except(FE_INVALID | FE_INEXACT);
ASSERT_EQ(__llvm_libc::feupdateenv(&env), 0);
ASSERT_EQ(__llvm_libc::fputil::test_except(FE_INVALID | FE_INEXACT),
FE_INVALID | FE_INEXACT);
}