[Lldb-commits] [lldb] r157050 - /lldb/trunk/test/functionalities/alias/TestAliases.py

Filipe Cabecinhas me at filcab.net
Fri May 18 06:21:05 PDT 2012


Author: filcab
Date: Fri May 18 08:21:05 2012
New Revision: 157050

URL: http://llvm.org/viewvc/llvm-project?rev=157050&view=rev
Log:
Fixed the test for the new process launch abbreviation.

Modified:
    lldb/trunk/test/functionalities/alias/TestAliases.py

Modified: lldb/trunk/test/functionalities/alias/TestAliases.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/alias/TestAliases.py?rev=157050&r1=157049&r2=157050&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/alias/TestAliases.py (original)
+++ lldb/trunk/test/functionalities/alias/TestAliases.py Fri May 18 08:21:05 2012
@@ -107,16 +107,16 @@
 
 
         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" ])





More information about the lldb-commits mailing list