diff options
| author | Greg Clayton <gclayton@apple.com> | 2011-01-23 17:46:22 +0000 |
|---|---|---|
| committer | Greg Clayton <gclayton@apple.com> | 2011-01-23 17:46:22 +0000 |
| commit | 6f907e69e9de7e59f94f664788cca86b96145648 (patch) | |
| tree | 62b20f933a5f01f992c56d6725c5cdf117fc0878 /lldb/test/class_static/TestStaticVariables.py | |
| parent | 499897b463f48bdce9c3ea1b20e54fac903a166f (diff) | |
| download | bcm5719-llvm-6f907e69e9de7e59f94f664788cca86b96145648.tar.gz bcm5719-llvm-6f907e69e9de7e59f94f664788cca86b96145648.zip | |
Deprecated old forms of SBTarget::Launch. There is not just one and no
SWIG renaming done to work around deprecated APIs.
llvm-svn: 124075
Diffstat (limited to 'lldb/test/class_static/TestStaticVariables.py')
| -rw-r--r-- | lldb/test/class_static/TestStaticVariables.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/test/class_static/TestStaticVariables.py b/lldb/test/class_static/TestStaticVariables.py index 0d3898d6ab0..c8792594fda 100644 --- a/lldb/test/class_static/TestStaticVariables.py +++ b/lldb/test/class_static/TestStaticVariables.py @@ -80,7 +80,8 @@ class StaticVariableTestCase(TestBase): self.assertTrue(breakpoint.IsValid(), VALID_BREAKPOINT) # Now launch the process, and do not stop at entry point. - self.process = target.LaunchProcess([], [], os.ctermid(), 0, False) + error = lldb.SBError() + self.process = target.Launch (None, None, os.ctermid(), os.ctermid(), os.ctermid(), None, 0, False, error) self.process = target.GetProcess() self.assertTrue(self.process.IsValid(), PROCESS_IS_VALID) |

