From: Bruno Haible <bruno@clisp.org>
Date: Tue, 19 Jan 2010 02:02:25 +0000 (+0100)
Subject: Tests for module 'asinl'.
X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=30cd07fada4e1c27ca3da633531df9d45066b04a;p=pspp

Tests for module 'asinl'.
---

diff --git a/ChangeLog b/ChangeLog
index 43f8f4e16d..66e3f29639 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2010-01-18  Bruno Haible  <bruno@clisp.org>
 
+	Tests for module 'asinl'.
+	* modules/asinl-tests: New file.
+	* tests/test-asinl.c: New file.
+
 	Tests for module 'acosl'.
 	* modules/acosl-tests: New file.
 	* tests/test-acosl.c: New file.
diff --git a/modules/asinl-tests b/modules/asinl-tests
new file mode 100644
index 0000000000..b111212ffe
--- /dev/null
+++ b/modules/asinl-tests
@@ -0,0 +1,14 @@
+Files:
+tests/test-asinl.c
+tests/signature.h
+tests/macros.h
+
+Depends-on:
+fpucw
+
+configure.ac:
+
+Makefile.am:
+TESTS += test-asinl
+check_PROGRAMS += test-asinl
+test_asinl_LDADD = $(LDADD) @ASINL_LIBM@
diff --git a/tests/test-asinl.c b/tests/test-asinl.c
new file mode 100644
index 0000000000..811f2d0ded
--- /dev/null
+++ b/tests/test-asinl.c
@@ -0,0 +1,43 @@
+/* Test of asinl() 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 (asinl, 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 = asinl (0.6L);
+  ASSERT (y >= 0.6435011087L && y <= 0.6435011088L);
+
+  return 0;
+}