diff options
| author | Adrian McCarthy <amccarth@google.com> | 2015-09-17 20:52:29 +0000 |
|---|---|---|
| committer | Adrian McCarthy <amccarth@google.com> | 2015-09-17 20:52:29 +0000 |
| commit | ab59a0f6e7fe4b24bac82d99ec3bdabbab8996f3 (patch) | |
| tree | 2dd0ce5346f1d231dd00597d1735487f06104c84 /lldb/test/functionalities | |
| parent | 5dd66c3ca26442afcaf68547ada84ec1043b0232 (diff) | |
| download | bcm5719-llvm-ab59a0f6e7fe4b24bac82d99ec3bdabbab8996f3.tar.gz bcm5719-llvm-ab59a0f6e7fe4b24bac82d99ec3bdabbab8996f3.zip | |
Get the process ID from a minidump.
llvm-svn: 247939
Diffstat (limited to 'lldb/test/functionalities')
| -rw-r--r-- | lldb/test/functionalities/postmortem/minidump/TestMiniDump.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/functionalities/postmortem/minidump/TestMiniDump.py b/lldb/test/functionalities/postmortem/minidump/TestMiniDump.py index 862eed84067..63cfd0ea07c 100644 --- a/lldb/test/functionalities/postmortem/minidump/TestMiniDump.py +++ b/lldb/test/functionalities/postmortem/minidump/TestMiniDump.py @@ -16,7 +16,7 @@ class MiniDumpTestCase(TestBase): """Test that lldb can read the process information from the minidump.""" self.assertTrue(self.process, PROCESS_IS_VALID) self.assertEqual(self.process.GetNumThreads(), 1) - # TODO(amccarth): Check the process ID. + self.assertEqual(self.process.GetProcessID(), 4440) def test_thread_info_in_mini_dump(self): """Test that lldb can read the thread information from the minidump.""" |

