From 1fd918676513b8e587920ca8a8ddae19c05e0e53 Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Tue, 19 Jan 2010 03:02:56 +0100 Subject: [PATCH] Tests for module 'atanl'. --- ChangeLog | 4 ++++ modules/atanl-tests | 14 ++++++++++++++ tests/test-atanl.c | 43 +++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 61 insertions(+) create mode 100644 modules/atanl-tests create mode 100644 tests/test-atanl.c diff --git a/ChangeLog b/ChangeLog index 66e3f2963..252d29440 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2010-01-18 Bruno Haible + Tests for module 'atanl'. + * modules/atanl-tests: New file. + * tests/test-atanl.c: New file. + Tests for module 'asinl'. * modules/asinl-tests: New file. * tests/test-asinl.c: New file. diff --git a/modules/atanl-tests b/modules/atanl-tests new file mode 100644 index 000000000..79fe52f1f --- /dev/null +++ b/modules/atanl-tests @@ -0,0 +1,14 @@ +Files: +tests/test-atanl.c +tests/signature.h +tests/macros.h + +Depends-on: +fpucw + +configure.ac: + +Makefile.am: +TESTS += test-atanl +check_PROGRAMS += test-atanl +test_atanl_LDADD = $(LDADD) @ATANL_LIBM@ diff --git a/tests/test-atanl.c b/tests/test-atanl.c new file mode 100644 index 000000000..e78e82327 --- /dev/null +++ b/tests/test-atanl.c @@ -0,0 +1,43 @@ +/* Test of atanl() function. + Copyright (C) 2010 Free Software Foundation, Inc. + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ + +/* Written by Bruno Haible , 2010. */ + +#include + +#include + +#include "signature.h" +SIGNATURE_CHECK (atanl, long double, (long double)); + +#include "fpucw.h" +#include "macros.h" + +long double y; + +int +main () +{ + DECL_LONG_DOUBLE_ROUNDING + + BEGIN_LONG_DOUBLE_ROUNDING (); + + /* A particular value. */ + y = atanl (0.6L); + ASSERT (y >= 0.5404195002L && y <= 0.5404195003L); + + return 0; +} -- 2.11.0