From 822198ef776515216795805f4ae15170fef1ad75 Mon Sep 17 00:00:00 2001 From: Johnny Chen Date: Tue, 19 Apr 2011 18:23:28 +0000 Subject: Converted to use SBProcess.LaunchSimple(). llvm-svn: 129779 --- lldb/test/class_static/TestStaticVariables.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'lldb/test/class_static/TestStaticVariables.py') diff --git a/lldb/test/class_static/TestStaticVariables.py b/lldb/test/class_static/TestStaticVariables.py index 10308f9df84..465607f6914 100644 --- a/lldb/test/class_static/TestStaticVariables.py +++ b/lldb/test/class_static/TestStaticVariables.py @@ -80,8 +80,7 @@ class StaticVariableTestCase(TestBase): self.assertTrue(breakpoint.IsValid(), VALID_BREAKPOINT) # Now launch the process, and do not stop at entry point. - error = lldb.SBError() - self.process = target.Launch (self.dbg.GetListener(), None, None, os.ctermid(), os.ctermid(), os.ctermid(), None, 0, False, error) + self.process = target.LaunchSimple(None, None, os.getcwd()) self.process = target.GetProcess() self.assertTrue(self.process.IsValid(), PROCESS_IS_VALID) -- cgit v1.2.3