From: Filipe Cabecinhas Date: Fri, 18 May 2012 13:21:05 +0000 (+0000) Subject: Fixed the test for the new process launch abbreviation. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=518549e28d4abeadea6d95424b0ff405dadc514d;p=platform%2Fupstream%2Fllvm.git Fixed the test for the new process launch abbreviation. llvm-svn: 157050 --- diff --git a/lldb/test/functionalities/alias/TestAliases.py b/lldb/test/functionalities/alias/TestAliases.py index d9415ab..1eca5d1 100644 --- a/lldb/test/functionalities/alias/TestAliases.py +++ b/lldb/test/functionalities/alias/TestAliases.py @@ -107,16 +107,16 @@ class AliasTestCase(TestBase): self.expect ("help run", - substrs = [ "'run' is an abbreviation for 'process launch --'" ]) + substrs = [ "'run' is an abbreviation for 'process launch -c /bin/bash --'" ]) self.expect ("help -a run", - substrs = [ "'run' is an abbreviation for 'process launch --'" ]) + substrs = [ "'run' is an abbreviation for 'process launch -c /bin/bash --'" ]) self.expect ("help -a", - substrs = [ 'run', 'process launch' ]) + substrs = [ 'run', 'process launch -c /bin/bash' ]) self.expect ("help", matching=False, - substrs = [ "'run'", 'process launch' ]) + substrs = [ "'run'", 'process launch -c /bin/bash' ]) self.expect ("run", patterns = [ "Process .* launched: .*a.out" ])