diff options
| author | Johnny Chen <johnny.chen@apple.com> | 2011-02-03 23:15:53 +0000 | 
|---|---|---|
| committer | Johnny Chen <johnny.chen@apple.com> | 2011-02-03 23:15:53 +0000 | 
| commit | d762ff1faa9c4bc9bfba25bf93c95d76b6966558 (patch) | |
| tree | 260c029784f6a0f494511481c2b69e7f9010df84 /lldb/test/python_api/symbol-context/TestSymbolContext.py | |
| parent | 3f924e4e87e08f4cd5900763a36a2b469a7a1313 (diff) | |
| download | bcm5719-llvm-d762ff1faa9c4bc9bfba25bf93c95d76b6966558.tar.gz bcm5719-llvm-d762ff1faa9c4bc9bfba25bf93c95d76b6966558.zip | |
Modify test scripts to accomodate SBTarget.Launch() API change.
llvm-svn: 124828
Diffstat (limited to 'lldb/test/python_api/symbol-context/TestSymbolContext.py')
| -rw-r--r-- | lldb/test/python_api/symbol-context/TestSymbolContext.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/lldb/test/python_api/symbol-context/TestSymbolContext.py b/lldb/test/python_api/symbol-context/TestSymbolContext.py index 357387fe4ca..96d835695d0 100644 --- a/lldb/test/python_api/symbol-context/TestSymbolContext.py +++ b/lldb/test/python_api/symbol-context/TestSymbolContext.py @@ -48,7 +48,7 @@ class SymbolContextAPITestCase(TestBase):          # Now launch the process, and do not stop at entry point.          error = lldb.SBError() -        self.process = target.Launch (None, None, os.ctermid(), os.ctermid(), os.ctermid(), None, 0, False, error) +        self.process = target.Launch (self.dbg.GetListener(), None, None, os.ctermid(), os.ctermid(), os.ctermid(), None, 0, False, error)          self.process = target.GetProcess()          self.assertTrue(self.process.IsValid(), PROCESS_IS_VALID) | 

