From 6d070de3c1b65aa3fc0b3f1c3ef853ffac8845b9 Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Tue, 19 Jan 2010 03:05:50 +0100 Subject: [PATCH] Tests for module 'sqrtl'. --- ChangeLog | 4 ++++ modules/sqrtl-tests | 14 ++++++++++++++ tests/test-sqrtl.c | 43 +++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 61 insertions(+) create mode 100644 modules/sqrtl-tests create mode 100644 tests/test-sqrtl.c diff --git a/ChangeLog b/ChangeLog index 1e5360780..fd815fdbe 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2010-01-18 Bruno Haible + Tests for module 'sqrtl'. + * modules/sqrtl-tests: New file. + * tests/test-sqrtl.c: New file. + Tests for module 'sinl'. * modules/sinl-tests: New file. * tests/test-sinl.c: New file. diff --git a/modules/sqrtl-tests b/modules/sqrtl-tests new file mode 100644 index 000000000..eab018b71 --- /dev/null +++ b/modules/sqrtl-tests @@ -0,0 +1,14 @@ +Files: +tests/test-sqrtl.c +tests/signature.h +tests/macros.h + +Depends-on: +fpucw + +configure.ac: + +Makefile.am: +TESTS += test-sqrtl +check_PROGRAMS += test-sqrtl +test_sqrtl_LDADD = $(LDADD) @SQRTL_LIBM@ diff --git a/tests/test-sqrtl.c b/tests/test-sqrtl.c new file mode 100644 index 000000000..2bf34fa00 --- /dev/null +++ b/tests/test-sqrtl.c @@ -0,0 +1,43 @@ +/* Test of sqrtl() 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 (sqrtl, 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 = sqrtl (0.6L); + ASSERT (y >= 0.7745966692L && y <= 0.7745966693L); + + return 0; +} -- 2.11.0