Fixed the test for the new process launch abbreviation.
authorFilipe Cabecinhas <me@filcab.net>
Fri, 18 May 2012 13:21:05 +0000 (13:21 +0000)
committerFilipe Cabecinhas <me@filcab.net>
Fri, 18 May 2012 13:21:05 +0000 (13:21 +0000)
llvm-svn: 157050

lldb/test/functionalities/alias/TestAliases.py

index d9415ab..1eca5d1 100644 (file)
@@ -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" ])