Skip to content

Commit 558d983

Browse files
committed
[lldb][test] Skip libsanitizers tests for now (llvm#130305)
These are macOS tests only and are currently failing on the x86_64 CI and on arm64 on recent versions of macOS/Xcode. The tests are failing because we're stopping in: ``` Process 17458 stopped * thread #1: tid = 0xbda69a, 0x00000002735bd000 libsystem_malloc.dylib`purgeable_print_self.cold.1, stop reason = EXC_BREAKPOINT (code=1, subcode=0x2735bd000) ``` instead of the libsanitizers library. This seems to be related to `-fsanitize-trivial-abi` support Skip these for now until we figure out the root cause. (cherry picked from commit 6cc8b0b)
1 parent 02af6b6 commit 558d983

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lldb/test/API/functionalities/asan/TestMemoryHistory.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def test(self):
2020
self.asan_tests()
2121

2222
@skipIf(oslist=no_match(["macosx"]))
23-
@skipIfDarwin # rdar://142836595
23+
@skipIf(bugnumber="rdar://144997976")
2424
def test_libsanitizers_asan(self):
2525
try:
2626
self.build(make_targets=["libsanitizers"])

lldb/test/API/functionalities/asan/TestReportData.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def test(self):
2020
self.asan_tests()
2121

2222
@skipIf(oslist=no_match(["macosx"]))
23-
@skipIfDarwin # rdar://142836595
23+
@skipIf(bugnumber="rdar://144997976")
2424
def test_libsanitizers_asan(self):
2525
try:
2626
self.build(make_targets=["libsanitizers"])

0 commit comments

Comments
 (0)