Skip to content

Commit 89a7e42

Browse files
committed
[NFC] Disabled few tests with MemoryWithOrigins
They pass regular MemorySanitizer, but hang with origin tracking.
1 parent be08e45 commit 89a7e42

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

llvm/test/ExecutionEngine/MCJIT/remote/eh.ll

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
; XFAIL: arm, cygwin, windows-msvc, windows-gnu
44
; UNSUPPORTED: powerpc64-unknown-linux-gnu
55
; Remove UNSUPPORTED for powerpc64-unknown-linux-gnu if problem caused by r266663 is fixed
6+
; FIXME: Something hangs here.
7+
; UNSUPPORTED: use_msan_with_origins
68
declare i8* @__cxa_allocate_exception(i64)
79
declare void @__cxa_throw(i8*, i8*, i8*)
810
declare i32 @__gxx_personality_v0(...)

llvm/test/ExecutionEngine/OrcLazy/multiple-compile-threads-basic.ll

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
; RUN: lli -jit-kind=orc-lazy -compile-threads=2 -thread-entry hello %s | FileCheck %s
22
; REQUIRES: thread_support
33
;
4+
; FIXME: Something hangs here.
5+
; UNSUPPORTED: use_msan_with_origins
6+
;
47
; CHECK: Hello
58

69
@.str = private unnamed_addr constant [7 x i8] c"Hello\0A\00", align 1

llvm/test/lit.cfg.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -399,3 +399,6 @@ def have_ld64_plugin_support():
399399

400400
if config.expensive_checks:
401401
config.available_features.add('expensive_checks')
402+
403+
if "MemoryWithOrigins" in config.llvm_use_sanitizer:
404+
config.available_features.add('use_msan_with_origins')

0 commit comments

Comments
 (0)