-
Notifications
You must be signed in to change notification settings - Fork 14.3k
[Interp] Mark inline-virtual.cpp as unsupported with ASan #135402
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
Conversation
See llvm#135401 for full flakiness report. It fails on stage2/asan_ubsan check with: ``` + /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_asan_ubsan/bin/clang-repl -Xcc -fno-rtti -Xcc -fno-sized-deallocation JIT session error: In graph incr_module_23-jitted-objectbuffer, section .text.startup: relocation target "_ZN1AD2Ev" at address 0x79618c48d040 is out of range of Delta32 fixup at 0x75618b40d02d (<anonymous block> @ 0x75618b40d010 + 0x1d) error: Failed to materialize symbols: { (main, { $.incr_module_23.__inits.0, __orc_init_func.incr_module_23, a2 }) } error: Failed to materialize symbols: { (main, { __orc_init_func.incr_module_23 }) } The error message ("out of range of Delta32") appears similar to llvm#102858, another Interpreter test that is flaky with ASan. ``` Recent test history on the x86_64-linux-fast bot: https://lab.llvm.org/buildbot/#/builders/169/builds/10339: fail 10340: buildbot logistical problem https://lab.llvm.org/buildbot/#/builders/169/builds/10341: fail https://lab.llvm.org/buildbot/#/builders/169/builds/10342: fail 10343: pass 10344: pass https://lab.llvm.org/buildbot/#/builders/169/builds/10345: fail 10346: pass ...
@llvm/pr-subscribers-clang Author: Thurston Dang (thurstond) ChangesSee #135401 for full flakiness report. It fails on stage2/asan_ubsan check with:
Recent test history on the x86_64-linux-fast bot:
Full diff: https://github.com/llvm/llvm-project/pull/135402.diff 1 Files Affected:
diff --git a/clang/test/Interpreter/inline-virtual.cpp b/clang/test/Interpreter/inline-virtual.cpp
index 9c31208a4a642..c9e85683d3cd0 100644
--- a/clang/test/Interpreter/inline-virtual.cpp
+++ b/clang/test/Interpreter/inline-virtual.cpp
@@ -1,6 +1,9 @@
// REQUIRES: host-supports-jit
// UNSUPPORTED: system-aix
//
+// This test is flaky with ASan: https://github.com/llvm/llvm-project/issues/135401
+// UNSUPPORTED: asan
+//
// We disable RTTI to avoid problems on Windows for non-RTTI builds of LLVM
// where the JIT cannot find ??_7type_info@@6B@.
// RUN: cat %s | clang-repl -Xcc -fno-rtti -Xcc -fno-sized-deallocation \
|
More failures on the x86_64-linux-fast bot: https://lab.llvm.org/buildbot/#/builders/169/builds/10371 |
* origin/main: (199 commits) [NFC][AsmPrinter] Refactor AsmPrinter and AArch64AsmPrinter to prepare for jump table partitions on aarch64 (llvm#125993) [HEXAGON] Fix corner cases for hwloops pass (llvm#135439) [flang] Handle volatility in lowering and codegen (llvm#135311) [MLIR][Shape] Support >2 args in `shape.broadcast` folder (llvm#126808) [DirectX] Use scalar arguments for @llvm.dx.dot intrinsics (llvm#134570) Remove the redundant check for "WeakPtr" in isSmartPtrClass to fix the issue 135612. (llvm#135629) [BOLT] Support relative vtable (llvm#135449) [flang] Fix linking to libMLIR (llvm#135483) [AsmPrinter] Link .section_sizes to the correct section (llvm#135583) [ctxprof] Handle instrumenting functions with `musttail` calls (llvm#135121) [SystemZ] Consider VST/VL as SimpleBDXStore/Load (llvm#135623) [libc++][CI] Pin the XCode version. (llvm#135412) [lldb-dap] Fix win32 build. (llvm#135638) [Interp] Mark inline-virtual.cpp as unsupported with ASan (llvm#135402) [libc++] Removes the _LIBCPP_VERBOSE_ABORT_NOT_NOEXCEPT macro. (llvm#135494) [CVP] Add tests for ucmp/scmp with switch (NFC) [mlir][tosa] Align AbsOp example variable names (llvm#135268) [mlir][tosa] Align AddOp examples to spec (llvm#135266) [mlir][tosa] Align RFFT2d and FFT2d operator examples (llvm#135261) [flang][OpenMP][HLFIR] Support vector subscripted array sections for DEPEND (llvm#133892) ...
See llvm#135401 for the full flakiness report. It fails on stage2/asan_ubsan check with: ``` + /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_asan_ubsan/bin/clang-repl -Xcc -fno-rtti -Xcc -fno-sized-deallocation JIT session error: In graph incr_module_23-jitted-objectbuffer, section .text.startup: relocation target "_ZN1AD2Ev" at address 0x79618c48d040 is out of range of Delta32 fixup at 0x75618b40d02d (<anonymous block> @ 0x75618b40d010 + 0x1d) error: Failed to materialize symbols: { (main, { $.incr_module_23.__inits.0, __orc_init_func.incr_module_23, a2 }) } error: Failed to materialize symbols: { (main, { __orc_init_func.incr_module_23 }) } The error message ("out of range of Delta32") appears similar to llvm#102858, another Interpreter test that is flaky with ASan. ``` Recent test history on the x86_64-linux-fast bot: - https://lab.llvm.org/buildbot/#/builders/169/builds/10339: fail - 10340: buildbot logistical problem - https://lab.llvm.org/buildbot/#/builders/169/builds/10341: fail - https://lab.llvm.org/buildbot/#/builders/169/builds/10342: fail - 10343: pass - 10344: pass - https://lab.llvm.org/buildbot/#/builders/169/builds/10345: fail - 10346: pass ...
See #135401 for full flakiness report.
It fails on stage2/asan_ubsan check with:
Recent test history on the x86_64-linux-fast bot:
...