summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorngie <ngie@FreeBSD.org>2016-04-21 19:59:55 +0000
committerngie <ngie@FreeBSD.org>2016-04-21 19:59:55 +0000
commit0dcfb506f8f2bec371308afa6e6da4372e884940 (patch)
treee7efb2dfef74d9f284a4939fda5ad3590ef80a79
parent729533413f4e97bb65852c22fb914805e2759b5a (diff)
downloadFreeBSD-src-0dcfb506f8f2bec371308afa6e6da4372e884940.zip
FreeBSD-src-0dcfb506f8f2bec371308afa6e6da4372e884940.tar.gz
Completely disable fmaxmin_test (follow up to r297952)
COMPILER_TYPE/COMPILER_VERSION doesn't get passed down properly at buildworld/installworld with older build hosts MFC after: never PR: 208703, 208963 Reported by: Jenkins Sponsored by: EMC / Isilon Storage Division
-rw-r--r--lib/msun/tests/Makefile12
1 files changed, 9 insertions, 3 deletions
diff --git a/lib/msun/tests/Makefile b/lib/msun/tests/Makefile
index 447cdba..3e0823f 100644
--- a/lib/msun/tests/Makefile
+++ b/lib/msun/tests/Makefile
@@ -53,9 +53,15 @@ TAP_TESTS_C+= exponential_test
TAP_TESTS_C+= fenv_test
TAP_TESTS_C+= fma_test
# clang 3.8.0 fails always fails this test. See: bug 208703
-.if ! (${COMPILER_TYPE} == "clang" && ${COMPILER_VERSION} == 30800)
-TAP_TESTS_C+= fmaxmin_test
-.endif
+#
+# XXX: depending on this compiler version check doesn't work at
+# buildworld/installworld time, which results in jenkins failures (bug 208963)
+# because the build is run on a 10.x instance, which has an older clang
+# compiler.
+#
+#.if ! (${COMPILER_TYPE} == "clang" && ${COMPILER_VERSION} == 30800)
+#TAP_TESTS_C+= fmaxmin_test
+#.endif
TAP_TESTS_C+= ilogb_test
TAP_TESTS_C+= invtrig_test
TAP_TESTS_C+= invctrig_test
OpenPOWER on IntegriCloud