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