-
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
Merged
Merged
Conversation
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
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: |
vitalybuka
approved these changes
Apr 14, 2025
bcardosolopes
added a commit
to bcardosolopes/llvm-project
that referenced
this pull request
Apr 14, 2025
* 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) ...
var-const
pushed a commit
to ldionne/llvm-project
that referenced
this pull request
Apr 17, 2025
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 ...
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.
See #135401 for full flakiness report.
It fails on stage2/asan_ubsan check with:
Recent test history on the x86_64-linux-fast bot:
...