[Lldb-commits] [lldb] r184613 - make command history test case run silently regardless of import status of module foo

Enrico Granata egranata at apple.com
Fri Jun 21 17:01:21 PDT 2013


Author: enrico
Date: Fri Jun 21 19:01:21 2013
New Revision: 184613

URL: http://llvm.org/viewvc/llvm-project?rev=184613&view=rev
Log:
make command history test case run silently regardless of import status of module foo


Modified:
    lldb/trunk/test/functionalities/command_history/TestCommandHistory.py

Modified: lldb/trunk/test/functionalities/command_history/TestCommandHistory.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/command_history/TestCommandHistory.py?rev=184613&r1=184612&r2=184613&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/command_history/TestCommandHistory.py (original)
+++ lldb/trunk/test/functionalities/command_history/TestCommandHistory.py Fri Jun 21 19:01:21 2013
@@ -18,7 +18,7 @@ class CommandHistoryTestCase(TestBase):
         self.runCmd('register read', check=False, inHistory=True) #1
         self.runCmd('apropos hello', check=False, inHistory=True) #2
         self.runCmd('memory write', check=False, inHistory=True) #3
-        self.runCmd('script foo', check=False, inHistory=True) #4
+        self.runCmd('log list', check=False, inHistory=True) #4
         self.runCmd('disassemble', check=False, inHistory=True) #5
         self.runCmd('expression 1', check=False, inHistory=True) #6
         self.runCmd('type summary list -w default', check=False, inHistory=True) #7
@@ -26,7 +26,7 @@ class CommandHistoryTestCase(TestBase):
         self.runCmd('frame select 1', check=False, inHistory=True) #9
 
         self.expect ("command history -s 3 -c 3", inHistory=True,
-                     substrs = ['3: memory write','4: script foo','5: disassemble'])
+                     substrs = ['3: memory write','4: log list','5: disassemble'])
         
         self.expect ("command history -s 3 -e 3", inHistory=True,
                      substrs = ['3: memory write'])





More information about the lldb-commits mailing list