Tests for module 'cosl'.
authorBruno Haible <bruno@clisp.org>
Tue, 19 Jan 2010 02:03:31 +0000 (03:03 +0100)
committerBruno Haible <bruno@clisp.org>
Tue, 19 Jan 2010 02:03:31 +0000 (03:03 +0100)
ChangeLog
modules/cosl-tests [new file with mode: 0644]
tests/test-cosl.c [new file with mode: 0644]

index 252d294..5d2c806 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2010-01-18  Bruno Haible  <bruno@clisp.org>
 
+       Tests for module 'cosl'.
+       * modules/cosl-tests: New file.
+       * tests/test-cosl.c: New file.
+
        Tests for module 'atanl'.
        * modules/atanl-tests: New file.
        * tests/test-atanl.c: New file.
diff --git a/modules/cosl-tests b/modules/cosl-tests
new file mode 100644 (file)
index 0000000..846f330
--- /dev/null
@@ -0,0 +1,14 @@
+Files:
+tests/test-cosl.c
+tests/signature.h
+tests/macros.h
+
+Depends-on:
+fpucw
+
+configure.ac:
+
+Makefile.am:
+TESTS += test-cosl
+check_PROGRAMS += test-cosl
+test_cosl_LDADD = $(LDADD) @COSL_LIBM@
diff --git a/tests/test-cosl.c b/tests/test-cosl.c
new file mode 100644 (file)
index 0000000..5e63fdd
--- /dev/null
@@ -0,0 +1,43 @@
+/* Test of cosl() 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 (cosl, 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 = cosl (0.6L);
+  ASSERT (y >= 0.8253356149L && y <= 0.8253356150L);
+
+  return 0;
+}