llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT--> @llvm/pr-subscribers-lldb Author: Michael Buch (Michael137) <details> <summary>Changes</summary> 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. --- Full diff: https://github.com/llvm/llvm-project/pull/130305.diff 2 Files Affected: - (modified) lldb/test/API/functionalities/asan/TestMemoryHistory.py (+1) - (modified) lldb/test/API/functionalities/asan/TestReportData.py (+1) ``````````diff 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"]) `````````` </details> https://github.com/llvm/llvm-project/pull/130305 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits