diff options
4 files changed, 5 insertions, 5 deletions
diff --git a/lldb/test/breakpoint_conditions/TestBreakpointConditions.py b/lldb/test/breakpoint_conditions/TestBreakpointConditions.py index f4ae5269574..42231cab9a6 100644 --- a/lldb/test/breakpoint_conditions/TestBreakpointConditions.py +++ b/lldb/test/breakpoint_conditions/TestBreakpointConditions.py @@ -139,7 +139,7 @@ class BreakpointConditionsTestCase(TestBase): startstr = 'val == 3') # 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) diff --git a/lldb/test/breakpoint_ignore_count/TestBreakpointIgnoreCount.py b/lldb/test/breakpoint_ignore_count/TestBreakpointIgnoreCount.py index 5bd74a14c4b..9e693dc7ad4 100644 --- a/lldb/test/breakpoint_ignore_count/TestBreakpointIgnoreCount.py +++ b/lldb/test/breakpoint_ignore_count/TestBreakpointIgnoreCount.py @@ -101,7 +101,7 @@ class BreakpointIgnoreCountTestCase(TestBase): "SetIgnoreCount() works correctly") # 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) diff --git a/lldb/test/python_api/event/TestEvents.py b/lldb/test/python_api/event/TestEvents.py index 30665ad6404..0c437831aa6 100644 --- a/lldb/test/python_api/event/TestEvents.py +++ b/lldb/test/python_api/event/TestEvents.py @@ -60,7 +60,7 @@ class EventAPITestCase(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) @@ -121,7 +121,7 @@ class EventAPITestCase(TestBase): VALID_BREAKPOINT) # Now launch the process, and do not stop at the 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.GetState() == lldb.eStateStopped, 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) |