[libc] Disable bfloat16 test for full build mode#149678
Merged
mikhailramalho merged 2 commits intollvm:mainfrom Jul 20, 2025
Merged
[libc] Disable bfloat16 test for full build mode#149678mikhailramalho merged 2 commits intollvm:mainfrom
mikhailramalho merged 2 commits intollvm:mainfrom
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.
Member
|
@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
|
lntue
approved these changes
Jul 19, 2025
overmighty
reviewed
Jul 20, 2025
Signed-off-by: Mikhail R. Gadelha <mikhail@igalia.com>
|
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 was referenced Jul 23, 2025
mahesh-attarde
pushed a commit
to mahesh-attarde/llvm-project
that referenced
this pull request
Jul 28, 2025
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
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.