From f20e1d7e0186c6f1517fb6babd446adf066683ce Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Tue, 19 Jan 2010 03:03:59 +0100 Subject: [PATCH] Tests for module 'expl'. --- ChangeLog | 4 ++++ modules/expl-tests | 14 ++++++++++++++ tests/test-expl.c | 43 +++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 61 insertions(+) create mode 100644 modules/expl-tests create mode 100644 tests/test-expl.c diff --git a/ChangeLog b/ChangeLog index 5d2c806e7..c2e472d4e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2010-01-18 Bruno Haible + Tests for module 'expl'. + * modules/expl-tests: New file. + * tests/test-expl.c: New file. + Tests for module 'cosl'. * modules/cosl-tests: New file. * tests/test-cosl.c: New file. diff --git a/modules/expl-tests b/modules/expl-tests new file mode 100644 index 000000000..bc7b28ae3 --- /dev/null +++ b/modules/expl-tests @@ -0,0 +1,14 @@ +Files: +tests/test-expl.c +tests/signature.h +tests/macros.h + +Depends-on: +fpucw + +configure.ac: + +Makefile.am: +TESTS += test-expl +check_PROGRAMS += test-expl +test_expl_LDADD = $(LDADD) @EXPL_LIBM@ diff --git a/tests/test-expl.c b/tests/test-expl.c new file mode 100644 index 000000000..fe671c8bd --- /dev/null +++ b/tests/test-expl.c @@ -0,0 +1,43 @@ +/* Test of expl() 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 (expl, 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 = expl (0.6L); + ASSERT (y >= 1.822118800L && y <= 1.822118801L); + + return 0; +} -- 2.11.0