From e69837b92e031f38da7c5d3c79be14fe7af22b87 Mon Sep 17 00:00:00 2001 From: Jonas Devlieghere Date: Mon, 18 Aug 2025 15:44:48 -0500 Subject: [PATCH] Revert "[lldb] Relax the error message in TestProcessCrashInfo.py (#153653)" This reverts commit 4b94c08a57b2b026aa434ef69823d579d56cfbda. --- .../process_crash_info/TestProcessCrashInfo.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lldb/test/API/functionalities/process_crash_info/TestProcessCrashInfo.py b/lldb/test/API/functionalities/process_crash_info/TestProcessCrashInfo.py index 4924937b4fe25..af05c2f3a0f62 100644 --- a/lldb/test/API/functionalities/process_crash_info/TestProcessCrashInfo.py +++ b/lldb/test/API/functionalities/process_crash_info/TestProcessCrashInfo.py @@ -38,7 +38,7 @@ def test_cli(self): patterns=[ "Extended Crash Information", "Crash-Info Annotations", - "BUG IN CLIENT OF LIBMALLOC", + "pointer being freed was not allocated", ], ) @@ -67,7 +67,7 @@ def test_api(self): self.assertTrue(crash_info.IsValid()) - self.assertIn("BUG IN CLIENT OF LIBMALLOC", stream.GetData()) + self.assertIn("pointer being freed was not allocated", stream.GetData()) # dyld leaves permanent crash_info records when testing on device. @skipIfDarwinEmbedded