-
Notifications
You must be signed in to change notification settings - Fork 14.5k
[libc] Disable bfloat16 test for full build mode #149678
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[libc] Disable bfloat16 test for full build mode #149678
Conversation
This patch temporarily disables bfloat16_test for full build mode, until the MPCommon target is updated so that mpfr_inc.h is not included in the MPCommon.h header. This should fix the rv32 buildbot failures.
@llvm/pr-subscribers-libc Author: Mikhail R. Gadelha (mikhailramalho) ChangesThis patch temporarily disables bfloat16_test for full build mode, until the MPCommon target is updated so that mpfr_inc.h is not included in the MPCommon.h header. This should fix the rv32 buildbot failures. Full diff: https://github.com/llvm/llvm-project/pull/149678.diff 1 Files Affected:
diff --git a/libc/test/src/__support/FPUtil/CMakeLists.txt b/libc/test/src/__support/FPUtil/CMakeLists.txt
index dfd90057b6ebf..571352f31661e 100644
--- a/libc/test/src/__support/FPUtil/CMakeLists.txt
+++ b/libc/test/src/__support/FPUtil/CMakeLists.txt
@@ -39,6 +39,10 @@ add_fp_unittest(
libc.src.__support.FPUtil.rounding_mode
)
+if(LLVM_LIBC_FULL_BUILD)
+ return()
+endif()
+
add_fp_unittest(
bfloat16_test
NEED_MPFR
|
Signed-off-by: Mikhail R. Gadelha <[email protected]>
LLVM Buildbot has detected a new failure on builder Full details are available at: https://lab.llvm.org/buildbot/#/builders/153/builds/38717 Here is the relevant piece of the build log for the reference
|
This patch temporarily disables bfloat16_test for full build mode, until the MPCommon target is updated so that mpfr_inc.h is not included in the MPCommon.h header.
This should fix the rv32 buildbot failures.