From 9598f83e7b2f447814fafba91811423b6ad4b016 Mon Sep 17 00:00:00 2001 From: Shashvat Jain Date: Thu, 6 Dec 2018 08:08:12 -0500 Subject: 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. --- testsuites/psxtests/psxhdrs/math/sinhl.c | 38 ++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 testsuites/psxtests/psxhdrs/math/sinhl.c (limited to 'testsuites/psxtests/psxhdrs/math/sinhl.c') diff --git a/testsuites/psxtests/psxhdrs/math/sinhl.c b/testsuites/psxtests/psxhdrs/math/sinhl.c new file mode 100644 index 0000000000..7418b8cfdc --- /dev/null +++ b/testsuites/psxtests/psxhdrs/math/sinhl.c @@ -0,0 +1,38 @@ +/** + * @file + * @brief coshl() 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 + +int test( void ); + +int test( void ) +{ + long double x = 20.78 ; + long double result; + + result = sinhl(x) ; + + return (result) ; +} -- cgit v1.2.3