Skip to content

Commit 6cc8b0b

Browse files
authored
[lldb][test] Skip libsanitizers tests for now (#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.
1 parent 5ff4355 commit 6cc8b0b

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

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

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

2121
@skipIf(oslist=no_match(["macosx"]))
22+
@skipIf(bugnumber="rdar://144997976")
2223
def test_libsanitizers_asan(self):
2324
try:
2425
self.build(make_targets=["libsanitizers"])

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

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

2222
@skipIf(oslist=no_match(["macosx"]))
23+
@skipIf(bugnumber="rdar://144997976")
2324
def test_libsanitizers_asan(self):
2425
try:
2526
self.build(make_targets=["libsanitizers"])

0 commit comments

Comments
 (0)