/
githubmirror
/
glibc
Обзор
Документация
Войти
/
githubmirror
/
glibc
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
math/libm-test-compoundn.inc
107 строк
6 KB
Paul Eggert
Update copyright dates with scripts/update-copyrights
02 янв 2026, 00:42
02 янв 2026, 00:42
66f3e92
Код
Авторство
О чём код?
/* Test compoundn. Copyright (C) 2025-2026 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. The GNU C Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with the GNU C Library; if not, see <https://www.gnu.org/licenses/>. */ #include "libm-test-driver.c" static const struct test_fL_f_data compoundn_test_data[] = { TEST_fL_f (compoundn, qnan_value, 0, 1, ERRNO_UNCHANGED), TEST_fL_f (compoundn, -qnan_value, 0, 1, ERRNO_UNCHANGED), TEST_fL_f (compoundn, snan_value, 0, qnan_value, INVALID_EXCEPTION), TEST_fL_f (compoundn, -snan_value, 0, qnan_value, INVALID_EXCEPTION), TEST_fL_f (compoundn, plus_infty, 0, 1, ERRNO_UNCHANGED), TEST_fL_f (compoundn, qnan_value, 1, qnan_value, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED), TEST_fL_f (compoundn, -qnan_value, 1, qnan_value, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED), TEST_fL_f (compoundn, snan_value, 1, qnan_value, INVALID_EXCEPTION), TEST_fL_f (compoundn, -snan_value, 1, qnan_value, INVALID_EXCEPTION), TEST_fL_f (compoundn, qnan_value, -1, qnan_value, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED), TEST_fL_f (compoundn, -qnan_value, -1, qnan_value, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED), TEST_fL_f (compoundn, snan_value, -1, qnan_value, INVALID_EXCEPTION), TEST_fL_f (compoundn, -snan_value, -1, qnan_value, INVALID_EXCEPTION), TEST_fL_f (compoundn, qnan_value, 3, qnan_value, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED), TEST_fL_f (compoundn, -qnan_value, 3, qnan_value, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED), TEST_fL_f (compoundn, qnan_value, -3, qnan_value, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED), TEST_fL_f (compoundn, -qnan_value, -3, qnan_value, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED), TEST_fL_f (compoundn, snan_value, 3, qnan_value, INVALID_EXCEPTION), TEST_fL_f (compoundn, -snan_value, 3, qnan_value, INVALID_EXCEPTION), TEST_fL_f (compoundn, snan_value, -3, qnan_value, INVALID_EXCEPTION), TEST_fL_f (compoundn, -snan_value, -3, qnan_value, INVALID_EXCEPTION), TEST_fL_f (compoundn, qnan_value, LLONG_MAX, qnan_value, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED), TEST_fL_f (compoundn, -qnan_value, LLONG_MAX, qnan_value, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED), TEST_fL_f (compoundn, snan_value, LLONG_MAX, qnan_value, INVALID_EXCEPTION), TEST_fL_f (compoundn, -snan_value, LLONG_MAX, qnan_value, INVALID_EXCEPTION), TEST_fL_f (compoundn, qnan_value, LLONG_MIN, qnan_value, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED), TEST_fL_f (compoundn, -qnan_value, LLONG_MIN, qnan_value, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED), TEST_fL_f (compoundn, snan_value, LLONG_MIN, qnan_value, INVALID_EXCEPTION), TEST_fL_f (compoundn, -snan_value, LLONG_MIN, qnan_value, INVALID_EXCEPTION), TEST_fL_f (compoundn, -1.001, 0, qnan_value, INVALID_EXCEPTION), TEST_fL_f (compoundn, -1.001, 1, qnan_value, INVALID_EXCEPTION), TEST_fL_f (compoundn, -1.001, -1, qnan_value, INVALID_EXCEPTION), TEST_fL_f (compoundn, -1.001, 2, qnan_value, INVALID_EXCEPTION), TEST_fL_f (compoundn, -1.001, -2, qnan_value, INVALID_EXCEPTION), TEST_fL_f (compoundn, -1.001, LLONG_MAX, qnan_value, INVALID_EXCEPTION), TEST_fL_f (compoundn, -1.001, LLONG_MIN, qnan_value, INVALID_EXCEPTION), TEST_fL_f (compoundn, -max_value, 0, qnan_value, INVALID_EXCEPTION), TEST_fL_f (compoundn, -max_value, 1, qnan_value, INVALID_EXCEPTION), TEST_fL_f (compoundn, -max_value, -1, qnan_value, INVALID_EXCEPTION), TEST_fL_f (compoundn, -max_value, 2, qnan_value, INVALID_EXCEPTION), TEST_fL_f (compoundn, -max_value, -2, qnan_value, INVALID_EXCEPTION), TEST_fL_f (compoundn, -max_value, LLONG_MAX, qnan_value, INVALID_EXCEPTION), TEST_fL_f (compoundn, -max_value, LLONG_MIN, qnan_value, INVALID_EXCEPTION), TEST_fL_f (compoundn, minus_infty, 0, qnan_value, INVALID_EXCEPTION), TEST_fL_f (compoundn, minus_infty, 1, qnan_value, INVALID_EXCEPTION), TEST_fL_f (compoundn, minus_infty, -1, qnan_value, INVALID_EXCEPTION), TEST_fL_f (compoundn, minus_infty, 2, qnan_value, INVALID_EXCEPTION), TEST_fL_f (compoundn, minus_infty, -2, qnan_value, INVALID_EXCEPTION), TEST_fL_f (compoundn, minus_infty, LLONG_MAX, qnan_value, INVALID_EXCEPTION), TEST_fL_f (compoundn, minus_infty, LLONG_MIN, qnan_value, INVALID_EXCEPTION), TEST_fL_f (compoundn, -1.0, -1, plus_infty, DIVIDE_BY_ZERO_EXCEPTION|ERRNO_ERANGE), TEST_fL_f (compoundn, -1.0, -2, plus_infty, DIVIDE_BY_ZERO_EXCEPTION|ERRNO_ERANGE), TEST_fL_f (compoundn, -1.0, LLONG_MIN, plus_infty, DIVIDE_BY_ZERO_EXCEPTION|ERRNO_ERANGE), TEST_fL_f (compoundn, plus_infty, 1, plus_infty, ERRNO_UNCHANGED), TEST_fL_f (compoundn, plus_infty, 2, plus_infty, ERRNO_UNCHANGED), TEST_fL_f (compoundn, plus_infty, LLONG_MAX, plus_infty, ERRNO_UNCHANGED), TEST_fL_f (compoundn, plus_infty, -1, plus_zero, ERRNO_UNCHANGED), TEST_fL_f (compoundn, plus_infty, -2, plus_zero, ERRNO_UNCHANGED), TEST_fL_f (compoundn, plus_infty, LLONG_MIN, plus_zero, ERRNO_UNCHANGED), AUTO_TESTS_fL_f (compoundn), }; static void compoundn_test (void) { ALL_RM_TEST (compoundn, 0, compoundn_test_data, RUN_TEST_LOOP_fL_f, END); } static void do_test (void) { compoundn_test (); } /* * Local Variables: * mode:c * End: */