diff options
| author | Johnny Chen <johnny.chen@apple.com> | 2010-12-22 22:56:19 +0000 |
|---|---|---|
| committer | Johnny Chen <johnny.chen@apple.com> | 2010-12-22 22:56:19 +0000 |
| commit | cdbe59484100e649e837561ca46141be73987b0b (patch) | |
| tree | 3a6d6aa58d1f16e3d000d1cb8610f80af385a551 /lldb/test/python_api/symbol-context/TestSymbolContext.py | |
| parent | d8f2dc8716c207995a5cdb2b189020d1396febf1 (diff) | |
| download | bcm5719-llvm-cdbe59484100e649e837561ca46141be73987b0b.tar.gz bcm5719-llvm-cdbe59484100e649e837561ca46141be73987b0b.zip | |
No need to pass an empty string as an arg or as an env string to the SBTarget.LaunchProcess() API.
llvm-svn: 122450
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 c6848a95f6d..6cadc55de24 100644 --- a/lldb/test/python_api/symbol-context/TestSymbolContext.py +++ b/lldb/test/python_api/symbol-context/TestSymbolContext.py @@ -47,7 +47,7 @@ class SymbolContextAPITestCase(TestBase): VALID_BREAKPOINT) # Now launch the process, and do not stop at entry point. - self.process = target.LaunchProcess([''], [''], os.ctermid(), 0, False) + self.process = target.LaunchProcess([], [], os.ctermid(), 0, False) self.process = target.GetProcess() self.assertTrue(self.process.IsValid(), PROCESS_IS_VALID) |

