summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohnny Chen <johnny.chen@apple.com>2012-02-06 21:07:21 +0000
committerJohnny Chen <johnny.chen@apple.com>2012-02-06 21:07:21 +0000
commit3397e7cd224a5651656ee78245bec7cfd8c896ed (patch)
tree02bcded97d0bf6911bf4ce057b3c9d8a14fd197c
parent1fc2eac062deb7c27bd229f329e3cb49409f1927 (diff)
downloadbcm5719-llvm-3397e7cd224a5651656ee78245bec7cfd8c896ed.tar.gz
bcm5719-llvm-3397e7cd224a5651656ee78245bec7cfd8c896ed.zip
Fix a typo in specifying the error path when launching the inferior.
llvm-svn: 149899
-rw-r--r--lldb/test/functionalities/process_launch/TestProcessLaunch.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/test/functionalities/process_launch/TestProcessLaunch.py b/lldb/test/functionalities/process_launch/TestProcessLaunch.py
index 4f39ee748b2..dbfd351fc8e 100644
--- a/lldb/test/functionalities/process_launch/TestProcessLaunch.py
+++ b/lldb/test/functionalities/process_launch/TestProcessLaunch.py
@@ -135,9 +135,9 @@ class ProcessLaunchTestCase(TestBase):
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" ])
OpenPOWER on IntegriCloud