[clang] ba40053 - [Interp] Mark the test unsupported with Asan (#102859)
via cfe-commits
cfe-commits at lists.llvm.org
Tue Aug 13 09:01:14 PDT 2024
Author: Vitaly Buka
Date: 2024-08-13T09:01:06-07:00
New Revision: ba400539e2880274bde7d70244269a82347dca31
URL: https://github.com/llvm/llvm-project/commit/ba400539e2880274bde7d70244269a82347dca31
DIFF: https://github.com/llvm/llvm-project/commit/ba400539e2880274bde7d70244269a82347dca31.diff
LOG: [Interp] Mark the test unsupported with Asan (#102859)
It's very flaky recently.
10 bulds are OK, then 3 failed:
https://lab.llvm.org/buildbot/#/builders/52/builds/1524
https://lab.llvm.org/buildbot/#/builders/52/builds/1525
https://lab.llvm.org/buildbot/#/builders/52/builds/1526
then 3 OK
https://lab.llvm.org/buildbot/#/builders/52/builds/1531
https://lab.llvm.org/buildbot/#/builders/52/builds/1532
then 2 green again
We need to stop to spam blame list by disabling the test,
and investigate later if Asan is valuable for the test.
Issue #102858
Added:
Modified:
clang/test/Interpreter/const.cpp
Removed:
################################################################################
diff --git a/clang/test/Interpreter/const.cpp b/clang/test/Interpreter/const.cpp
index 57fd880400e6a1..52be75e09ade74 100644
--- a/clang/test/Interpreter/const.cpp
+++ b/clang/test/Interpreter/const.cpp
@@ -2,6 +2,9 @@
// see https://github.com/llvm/llvm-project/issues/68092
// XFAIL: host={{.*}}-windows-msvc
+// The test is flaky with asan https://github.com/llvm/llvm-project/issues/102858.
+// UNSUPPORTED: asan
+
// RUN: cat %s | clang-repl | FileCheck %s
// RUN: cat %s | clang-repl -Xcc -O2 | FileCheck %s
More information about the cfe-commits
mailing list