[clang] Temporarily disable test `clang/Interpreter/crash.cpp` (PR #119978)
via cfe-commits
cfe-commits at lists.llvm.org
Sat Dec 14 10:16:07 PST 2024
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-clang
Author: Yuxuan Chen (yuxuanchen1997)
<details>
<summary>Changes</summary>
See discussion on https://github.com/llvm/llvm-project/pull/117475#issuecomment-2543223954
This test currently invokes the system ld, which can cause issues on some CI systems where system ld only works with $LDFLAGS and $LIBS. @<!-- -->vgvassilev has suggested to use the `yaml2obj` tool to avoid invoking ld.
Before that happens, proposing to disable this test until we find a solution to unblock downstream CI.
---
Full diff: https://github.com/llvm/llvm-project/pull/119978.diff
1 Files Affected:
- (modified) clang/test/Interpreter/crash.cpp (+1)
``````````diff
diff --git a/clang/test/Interpreter/crash.cpp b/clang/test/Interpreter/crash.cpp
index 9a606983524d82..11ff938aedd5d5 100644
--- a/clang/test/Interpreter/crash.cpp
+++ b/clang/test/Interpreter/crash.cpp
@@ -1,4 +1,5 @@
// REQUIRES: host-supports-jit, x86_64-linux
+// UNSUPPORTED: target={{.*}}
// RUN: rm -rf %t
// RUN: mkdir -p %t
``````````
</details>
https://github.com/llvm/llvm-project/pull/119978
More information about the cfe-commits
mailing list