llvmbot wrote:

<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-lldb

Author: Jonas Devlieghere (JDevlieghere)

<details>
<summary>Changes</summary>

Reverts llvm/llvm-project#<!-- -->153653 because older versions of macOS do not 
use the same prefix.

---
Full diff: https://github.com/llvm/llvm-project/pull/154197.diff


1 Files Affected:

- (modified) 
lldb/test/API/functionalities/process_crash_info/TestProcessCrashInfo.py (+2-2) 


``````````diff
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

``````````

</details>


https://github.com/llvm/llvm-project/pull/154197
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to