[clang] Temporarily disable test `clang/Interpreter/crash.cpp` (PR #119978)
Yuxuan Chen via cfe-commits
cfe-commits at lists.llvm.org
Sat Dec 14 10:15:32 PST 2024
https://github.com/yuxuanchen1997 created https://github.com/llvm/llvm-project/pull/119978
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.
>From 35886284dc739f9849804fbde849fc0e912d5a4d Mon Sep 17 00:00:00 2001
From: Yuxuan Chen <ych at meta.com>
Date: Sat, 14 Dec 2024 10:12:57 -0800
Subject: [PATCH] temporarily disable the test
---
clang/test/Interpreter/crash.cpp | 1 +
1 file changed, 1 insertion(+)
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
More information about the cfe-commits
mailing list