[Lldb-commits] [lldb] r149899 - /lldb/trunk/test/functionalities/process_launch/TestProcessLaunch.py

Johnny Chen johnny.chen at apple.com
Mon Feb 6 13:07:21 PST 2012


Author: johnny
Date: Mon Feb  6 15:07:21 2012
New Revision: 149899

URL: http://llvm.org/viewvc/llvm-project?rev=149899&view=rev
Log:
Fix a typo in specifying the error path when launching the inferior.

Modified:
    lldb/trunk/test/functionalities/process_launch/TestProcessLaunch.py

Modified: lldb/trunk/test/functionalities/process_launch/TestProcessLaunch.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/process_launch/TestProcessLaunch.py?rev=149899&r1=149898&r2=149899&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/process_launch/TestProcessLaunch.py (original)
+++ lldb/trunk/test/functionalities/process_launch/TestProcessLaunch.py Mon Feb  6 15:07:21 2012
@@ -135,9 +135,9 @@
         except OSError:
             pass
 
-        launch_command = "process launch -w %s -o %s -e %sl" % (my_working_dir_path,
-                                                                out_file_path,
-                                                                err_file_path)
+        launch_command = "process launch -w %s -o %s -e %s" % (my_working_dir_path,
+                                                               out_file_path,
+                                                               err_file_path)
 
         self.expect(launch_command,
                     patterns = [ "Process .* launched: .*a.out" ])





More information about the lldb-commits mailing list