Fix a typo in specifying the error path when launching the inferior.

llvm-svn: 149899
This commit is contained in:
Johnny Chen
2012-02-06 21:07:21 +00:00
parent 1fc2eac062
commit 3397e7cd22

View File

@@ -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" ])