From 57a8ca3a06a2eae23e318f42a84ec773fa9d272b Mon Sep 17 00:00:00 2001 From: Enrico Granata Date: Sat, 22 Jun 2013 00:01:21 +0000 Subject: [PATCH] make command history test case run silently regardless of import status of module foo llvm-svn: 184613 --- .../functionalities/command_history/TestCommandHistory.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lldb/test/functionalities/command_history/TestCommandHistory.py b/lldb/test/functionalities/command_history/TestCommandHistory.py index 513a7b71c7b4..4ed7c579c4b2 100644 --- a/lldb/test/functionalities/command_history/TestCommandHistory.py +++ b/lldb/test/functionalities/command_history/TestCommandHistory.py @@ -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'])