2007-03-21 Bruno Haible <bruno@clisp.org>
+ * 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.
--- /dev/null
+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
+
--- /dev/null
+/* 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 <bruno@clisp.org>, 2007. */
+
+#include <config.h>
+
+#if HAVE_LONG_DOUBLE
+
+#include "isnanl.h"
+
+#include "test-isnanl.h"
+
+#else
+
+int
+main ()
+{
+ return 0;
+}
+
+#endif