diff options
author | Jason Molenda <jmolenda@apple.com> | 2017-12-22 03:27:02 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 2017-12-22 03:27:02 +0000 |
commit | 16b386de15782a086778a4a66447058310483713 (patch) | |
tree | 70dc4347a30a1f68b173cd8362fe3f71173ddcf2 /lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new | |
parent | 2972991969b6841b361085d8c0dd0b964ebfd04f (diff) | |
download | bcm5719-llvm-16b386de15782a086778a4a66447058310483713.tar.gz bcm5719-llvm-16b386de15782a086778a4a66447058310483713.zip |
Change SBProcess::ReadCStringFromMemory() back to returning
an empty Python string object when it reads a 0-length
string out of memory (and a successful SBError object).
<rdar://problem/26186692>
llvm-svn: 321338
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/TestMiniDumpNew.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/TestMiniDumpNew.py b/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/TestMiniDumpNew.py index 178bb678df7..4e587b92c1d 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/TestMiniDumpNew.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/TestMiniDumpNew.py @@ -117,7 +117,7 @@ class MiniDumpNewTestCase(TestBase): thread = self.process.GetThreadAtIndex(0) self.assertEqual(thread.GetStopReason(), lldb.eStopReasonNone) stop_description = thread.GetStopDescription(256) - self.assertEqual(stop_description, None) + self.assertEqual(stop_description, "") def do_test_deeper_stack(self, binary, core, pid): target = self.dbg.CreateTarget(binary) |