diff --git a/lldb/test/API/functionalities/process_crash_info/TestProcessCrashInfo.py b/lldb/test/API/functionalities/process_crash_info/TestProcessCrashInfo.py --- a/lldb/test/API/functionalities/process_crash_info/TestProcessCrashInfo.py +++ b/lldb/test/API/functionalities/process_crash_info/TestProcessCrashInfo.py @@ -69,21 +69,3 @@ self.assertIn("pointer being freed was not allocated", stream.GetData()) - def test_on_sane_process(self): - """Test that lldb doesn't fetch the extended crash information - dictionnary from a 'sane' stopped process.""" - self.build() - target, _, _, _ = lldbutil.run_to_line_breakpoint(self, lldb.SBFileSpec(self.source), - self.line) - - stream = lldb.SBStream() - self.assertTrue(stream) - - process = target.GetProcess() - self.assertTrue(process) - - crash_info = process.GetExtendedCrashInformation() - - error = crash_info.GetAsJSON(stream) - self.assertFalse(error.Success()) - self.assertIn("No structured data.", error.GetCString())