From b792cc1d50e9343e99e3110ffb65c67744f733c0 Mon Sep 17 00:00:00 2001 From: Johnny Chen Date: Thu, 7 Oct 2010 16:06:12 +0000 Subject: [PATCH] Use the updated process launch API. llvm-svn: 115917 --- lldb/test/class_types/TestClassTypes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/test/class_types/TestClassTypes.py b/lldb/test/class_types/TestClassTypes.py index adc183d9acea..53b82285aa6b 100644 --- a/lldb/test/class_types/TestClassTypes.py +++ b/lldb/test/class_types/TestClassTypes.py @@ -106,7 +106,7 @@ class ClassTypesTestCase(TestBase): # Now launch the process, and do not stop at entry point. rc = lldb.SBError() - self.process = target.LaunchProcess([''], [''], os.ctermid(), 0, False, rc) + self.process = target.Launch([''], [''], os.ctermid(), 0, False, rc) #self.breakAfterLaunch(self.process, "C::C(int, int, int)") if not rc.Success() or not self.process.IsValid():