From d86a29da8c531f7419d39a98e36100a94aca6fd0 Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Thu, 22 Mar 2007 02:19:08 +0000 Subject: [PATCH] Tests for module 'isnanl'. --- ChangeLog | 3 +++ modules/isnanl-tests | 16 ++++++++++++++++ tests/test-isnanl.c | 36 ++++++++++++++++++++++++++++++++++++ 3 files changed, 55 insertions(+) create mode 100644 modules/isnanl-tests create mode 100644 tests/test-isnanl.c diff --git a/ChangeLog b/ChangeLog index c7c73fd46..ac28398a4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2007-03-21 Bruno Haible + * modules/isnanl-tests: New file. + * tests/test-isnanl.c: New file. + * modules/isnanl: New file. * lib/isnanl.h: New file. * m4/isnanl.m4 (gl_FUNC_ISNANL): New macro. diff --git a/modules/isnanl-tests b/modules/isnanl-tests new file mode 100644 index 000000000..1098aa3ce --- /dev/null +++ b/modules/isnanl-tests @@ -0,0 +1,16 @@ +Files: +tests/test-isnanl.c +tests/test-isnanl.h + +Depends-on: + +configure.ac: +gl_LONG_DOUBLE_EXPONENT_LOCATION +AC_SUBST([ISNANL_LIBM]) + +Makefile.am: +TESTS += test-isnanl +check_PROGRAMS += test-isnanl +test_isnanl_LDADD = @ISNANL_LIBM@ $(LDADD) +EXTRA_DIST += test-isnanl.h + diff --git a/tests/test-isnanl.c b/tests/test-isnanl.c new file mode 100644 index 000000000..818c05426 --- /dev/null +++ b/tests/test-isnanl.c @@ -0,0 +1,36 @@ +/* Test of isnanl() substitute. + Copyright (C) 2007 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 2, 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, write to the Free Software Foundation, + Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ + +/* Written by Bruno Haible , 2007. */ + +#include + +#if HAVE_LONG_DOUBLE + +#include "isnanl.h" + +#include "test-isnanl.h" + +#else + +int +main () +{ + return 0; +} + +#endif -- 2.11.0