No need to pass an empty string as an arg or as an env string to the SBTarget.LaunchProcess() API.
llvm-svn: 122450
diff --git a/lldb/test/python_api/event/TestEvents.py b/lldb/test/python_api/event/TestEvents.py
index 30665ad..0c43783 100644
--- a/lldb/test/python_api/event/TestEvents.py
+++ b/lldb/test/python_api/event/TestEvents.py
@@ -60,7 +60,7 @@
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 @@
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,