We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dfaebe7 commit d8208b0Copy full SHA for d8208b0
lldb/test/API/functionalities/process_crash_info/TestProcessCrashInfo.py
@@ -38,7 +38,7 @@ def test_cli(self):
38
patterns=[
39
"Extended Crash Information",
40
"Crash-Info Annotations",
41
- "BUG IN CLIENT OF LIBMALLOC",
+ "pointer being freed was not allocated",
42
],
43
)
44
@@ -67,7 +67,7 @@ def test_api(self):
67
68
self.assertTrue(crash_info.IsValid())
69
70
- self.assertIn("BUG IN CLIENT OF LIBMALLOC", stream.GetData())
+ self.assertIn("pointer being freed was not allocated", stream.GetData())
71
72
# dyld leaves permanent crash_info records when testing on device.
73
@skipIfDarwinEmbedded
0 commit comments