summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psxhdrs/math/tgammal.c
diff options
context:
space:
mode:
authorShashvat Jain <shashvatjain2002@gmail.com>2018-12-06 08:08:12 -0500
committerJoel Sherrill <joel@rtems.org>2018-12-06 09:51:56 -0600
commit9598f83e7b2f447814fafba91811423b6ad4b016 (patch)
treea9251921d98f07848e46d013787cc042643fac0a /testsuites/psxtests/psxhdrs/math/tgammal.c
parentPOSIX Signature Test for fenv.h (GCI 2018) (diff)
downloadrtems-9598f83e7b2f447814fafba91811423b6ad4b016.tar.bz2
psxhdrs: Add POSIX Conformance Tests for math.h (GCI 2018)
Includes API tests for y0l, y1l, and ynl which are in glibc but not in POSIX or newlib. They are disabled until further investigation as to compatibility requirements are determined per the referenced ticket. Updates #3638.
Diffstat (limited to 'testsuites/psxtests/psxhdrs/math/tgammal.c')
-rw-r--r--testsuites/psxtests/psxhdrs/math/tgammal.c37
1 files changed, 37 insertions, 0 deletions
diff --git a/testsuites/psxtests/psxhdrs/math/tgammal.c b/testsuites/psxtests/psxhdrs/math/tgammal.c
new file mode 100644
index 0000000000..945a702d45
--- /dev/null
+++ b/testsuites/psxtests/psxhdrs/math/tgammal.c
@@ -0,0 +1,37 @@
+/**
+ * @file
+ * @brief tgammal() API Conformance Test
+ */
+
+ /*
+ * COPYRIGHT (c) 2018.
+ * Shashvat Jain
+ *
+ * Permission to use, copy, modify, and/or distribute this software
+ * for any purpose with or without fee is hereby granted.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
+ * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR
+ * BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES
+ * OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
+ * WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
+ * ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ */
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include <math.h>
+
+int test( void );
+
+int test( void )
+{
+ long double x = 2 , result ;
+
+ result = tgammal(x) ;
+
+ return (result);
+}