Mercurial > hg > octave-jordi > gnulib-hg
changeset 12759:4b0ea869c388
Tests for module 'sinl'.
author | Bruno Haible <bruno@clisp.org> |
---|---|
date | Tue, 19 Jan 2010 03:05:13 +0100 |
parents | 1cd929897a90 |
children | 5d881685b163 |
files | ChangeLog modules/sinl-tests tests/test-sinl.c |
diffstat | 3 files changed, 61 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2010-01-18 Bruno Haible <bruno@clisp.org> + Tests for module 'sinl'. + * modules/sinl-tests: New file. + * tests/test-sinl.c: New file. + Tests for module 'logl'. * modules/logl-tests: New file. * tests/test-logl.c: New file.
new file mode 100644 --- /dev/null +++ b/modules/sinl-tests @@ -0,0 +1,14 @@ +Files: +tests/test-sinl.c +tests/signature.h +tests/macros.h + +Depends-on: +fpucw + +configure.ac: + +Makefile.am: +TESTS += test-sinl +check_PROGRAMS += test-sinl +test_sinl_LDADD = $(LDADD) @SINL_LIBM@
new file mode 100644 --- /dev/null +++ b/tests/test-sinl.c @@ -0,0 +1,43 @@ +/* Test of sinl() 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 <http://www.gnu.org/licenses/>. */ + +/* Written by Bruno Haible <bruno@clisp.org>, 2010. */ + +#include <config.h> + +#include <math.h> + +#include "signature.h" +SIGNATURE_CHECK (sinl, 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 = sinl (0.6L); + ASSERT (y >= 0.5646424733L && y <= 0.5646424734L); + + return 0; +}