[Lldb-commits] [lldb] [lldb][test] Skip libsanitizers tests for now (PR #130305)
Michael Buch via lldb-commits
lldb-commits at lists.llvm.org
Fri Mar 7 09:00:19 PST 2025
https://github.com/Michael137 created https://github.com/llvm/llvm-project/pull/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.
Skip these for now until we figure out the root cause.
>From 4f3be7102d30dd322c16e9d27a1ffb0818c3446a Mon Sep 17 00:00:00 2001
From: Michael Buch <michaelbuch12 at gmail.com>
Date: Fri, 7 Mar 2025 16:56:33 +0000
Subject: [PATCH] [lldb][test] Skip libsanitizers tests for now
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.
Skip these for now until we figure out the root cause.
---
lldb/test/API/functionalities/asan/TestMemoryHistory.py | 1 +
lldb/test/API/functionalities/asan/TestReportData.py | 1 +
2 files changed, 2 insertions(+)
diff --git a/lldb/test/API/functionalities/asan/TestMemoryHistory.py b/lldb/test/API/functionalities/asan/TestMemoryHistory.py
index 41ab25823f5cc..b04182a543719 100644
--- a/lldb/test/API/functionalities/asan/TestMemoryHistory.py
+++ b/lldb/test/API/functionalities/asan/TestMemoryHistory.py
@@ -19,6 +19,7 @@ def test(self):
self.asan_tests()
@skipIf(oslist=no_match(["macosx"]))
+ @skipIf(bugnumber="rdar://144997976")
def test_libsanitizers_asan(self):
try:
self.build(make_targets=["libsanitizers"])
diff --git a/lldb/test/API/functionalities/asan/TestReportData.py b/lldb/test/API/functionalities/asan/TestReportData.py
index 29bdf1fac8e73..3319677be9b51 100644
--- a/lldb/test/API/functionalities/asan/TestReportData.py
+++ b/lldb/test/API/functionalities/asan/TestReportData.py
@@ -20,6 +20,7 @@ def test(self):
self.asan_tests()
@skipIf(oslist=no_match(["macosx"]))
+ @skipIf(bugnumber="rdar://144997976")
def test_libsanitizers_asan(self):
try:
self.build(make_targets=["libsanitizers"])
More information about the lldb-commits
mailing list