//===-- 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 "utils/UnitTest/Test.h" #include #include 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); }