summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorngie <ngie@FreeBSD.org>2015-01-05 00:02:11 +0000
committerngie <ngie@FreeBSD.org>2015-01-05 00:02:11 +0000
commitfb7e4816dbe48a73588f353a02e73869d356bf41 (patch)
tree1fe3cd4b264e3d82078f0190ef6e6f8118b80cc6 /lib
parent6f128b2d1aeea28705ed13c65395d7719bc3ebb5 (diff)
downloadFreeBSD-src-fb7e4816dbe48a73588f353a02e73869d356bf41.zip
FreeBSD-src-fb7e4816dbe48a73588f353a02e73869d356bf41.tar.gz
MFC r274618,r276521:
MFC Note: text corrected for r274618 r274618: Add reachover Makefiles for contrib/netbsd-tests/lib/msun A variant of this code has been tested on amd64/i386 for some time by EMC/Isilon on 10-STABLE/11-CURRENT. It builds on other architectures, but the code will remain off until it's proven it works on virtual hardware or real hardware on other architectures Sponsored by: EMC / Isilon Storage Division r276521: Reset errno in :scalbnf_val and :scalbnl_val before running the tests so the tested errno isn't stale This was needed in order for the test to pass on amd64 with stable/10
Diffstat (limited to 'lib')
-rw-r--r--lib/msun/Makefile4
-rw-r--r--lib/msun/Makefile.amd646
-rw-r--r--lib/msun/Makefile.i3866
-rw-r--r--lib/msun/tests/Makefile63
4 files changed, 79 insertions, 0 deletions
diff --git a/lib/msun/Makefile b/lib/msun/Makefile
index 654d0f5..71af606 100644
--- a/lib/msun/Makefile
+++ b/lib/msun/Makefile
@@ -217,4 +217,8 @@ MLINKS+=tan.3 tanf.3 tan.3 tanl.3
MLINKS+=tanh.3 tanhf.3 tanh.3 tanhl.3
MLINKS+=trunc.3 truncf.3 trunc.3 truncl.3
+.include <bsd.own.mk>
+
+.include <bsd.arch.inc.mk>
+
.include <bsd.lib.mk>
diff --git a/lib/msun/Makefile.amd64 b/lib/msun/Makefile.amd64
new file mode 100644
index 0000000..dd0f5b0
--- /dev/null
+++ b/lib/msun/Makefile.amd64
@@ -0,0 +1,6 @@
+# $FreeBSD$
+
+.if ${MK_TESTS} != "no"
+SUBDIR+= tests
+.endif
+
diff --git a/lib/msun/Makefile.i386 b/lib/msun/Makefile.i386
new file mode 100644
index 0000000..dd0f5b0
--- /dev/null
+++ b/lib/msun/Makefile.i386
@@ -0,0 +1,6 @@
+# $FreeBSD$
+
+.if ${MK_TESTS} != "no"
+SUBDIR+= tests
+.endif
+
diff --git a/lib/msun/tests/Makefile b/lib/msun/tests/Makefile
new file mode 100644
index 0000000..4261e48
--- /dev/null
+++ b/lib/msun/tests/Makefile
@@ -0,0 +1,63 @@
+# $FreeBSD$
+
+OBJTOP= ${.OBJDIR:H:H:H}
+SRCTOP= ${.CURDIR:H:H:H}
+TESTSRC= ${SRCTOP}/contrib/netbsd-tests/lib/libm
+
+TESTSDIR= ${TESTSBASE}/lib/msun
+
+.if ${MACHINE} == "sparc" || ${MACHINE} == "i386" \
+ || ${MACHINE} == "amd64" || ${MACHINE_CPU} == "arm" \
+ || ${MACHINE} == "sparc64"
+CFLAGS+= -DHAVE_FENV_H
+.endif
+
+.if ${MACHINE} == "amd64" || ${MACHINE} == "i386"
+CFLAGS+= -D__HAVE_LONG_DOUBLE
+.endif
+
+NETBSD_ATF_TESTS_C= acos_test
+NETBSD_ATF_TESTS_C+= asin_test
+NETBSD_ATF_TESTS_C+= atan_test
+NETBSD_ATF_TESTS_C+= cbrt_test
+NETBSD_ATF_TESTS_C+= ceil_test
+NETBSD_ATF_TESTS_C+= cos_test
+NETBSD_ATF_TESTS_C+= cosh_test
+NETBSD_ATF_TESTS_C+= erf_test
+NETBSD_ATF_TESTS_C+= exp_test
+NETBSD_ATF_TESTS_C+= fmod_test
+NETBSD_ATF_TESTS_C+= infinity_test
+NETBSD_ATF_TESTS_C+= ldexp_test
+NETBSD_ATF_TESTS_C+= log_test
+NETBSD_ATF_TESTS_C+= pow_test
+NETBSD_ATF_TESTS_C+= precision_test
+NETBSD_ATF_TESTS_C+= round_test
+NETBSD_ATF_TESTS_C+= scalbn_test
+NETBSD_ATF_TESTS_C+= sin_test
+NETBSD_ATF_TESTS_C+= sinh_test
+NETBSD_ATF_TESTS_C+= sqrt_test
+NETBSD_ATF_TESTS_C+= tan_test
+NETBSD_ATF_TESTS_C+= tanh_test
+
+CSTD= c99
+
+LDADD+= -lm
+DPADD+= ${LIBM}
+#COPTS+= -Wfloat-equal
+
+# Copied from lib/msun/Makefile
+.if ${MACHINE_CPUARCH} == "i386"
+ARCH_SUBDIR= i387
+.else
+ARCH_SUBDIR= ${MACHINE_CPUARCH}
+.endif
+
+.include "../${ARCH_SUBDIR}/Makefile.inc"
+
+# XXX: for some odd reason float.h doesn't tell the full story about what the
+# precision is.
+CFLAGS+= -DLDBL_PREC=${LDBL_PREC}
+
+.include <netbsd-tests.test.mk>
+
+.include <bsd.test.mk>
OpenPOWER on IntegriCloud