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

Johnny Chen johnny.chen at apple.com
Mon Nov 7 15:26:13 PST 2011


Author: johnny
Date: Mon Nov  7 17:26:12 2011
New Revision: 144039

URL: http://llvm.org/viewvc/llvm-project?rev=144039&view=rev
Log:
Fix the test suite failure.  The particular line in the test case was there since the initial version
dated 2010-21-15.  The test started failure recently probably due to work done on the command parsing.
Anyway, the specific test sequence is invalid and is fixed now.

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=144039&r1=144038&r2=144039&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/alias/TestAliases.py (original)
+++ lldb/trunk/test/functionalities/alias/TestAliases.py Mon Nov  7 17:26:12 2011
@@ -51,7 +51,7 @@
         self.runCmd ("command alias alias command alias")
         self.runCmd ("command alias unalias command unalias")
 
-        self.runCmd ("alias myrun process launch -t%1 --")
+        self.runCmd ("alias myrun process launch -t %1 --")
         self.runCmd ("alias bp breakpoint")
 
         self.expect ("alias bpa bp add",





More information about the lldb-commits mailing list