diff options
author | Enrico Granata <egranata@apple.com> | 2013-06-22 00:01:21 +0000 |
---|---|---|
committer | Enrico Granata <egranata@apple.com> | 2013-06-22 00:01:21 +0000 |
commit | 57a8ca3a06a2eae23e318f42a84ec773fa9d272b (patch) | |
tree | ac05f083adb32e9d41e0d0db834a03acb5ccfbb8 /lldb/test/functionalities/command_history/TestCommandHistory.py | |
parent | e5323aa92145a909c0c4d644977a2756bbf4321a (diff) | |
download | bcm5719-llvm-57a8ca3a06a2eae23e318f42a84ec773fa9d272b.tar.gz bcm5719-llvm-57a8ca3a06a2eae23e318f42a84ec773fa9d272b.zip |
make command history test case run silently regardless of import status of module foo
llvm-svn: 184613
Diffstat (limited to 'lldb/test/functionalities/command_history/TestCommandHistory.py')
-rw-r--r-- | lldb/test/functionalities/command_history/TestCommandHistory.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/test/functionalities/command_history/TestCommandHistory.py b/lldb/test/functionalities/command_history/TestCommandHistory.py index 513a7b71c7b..4ed7c579c4b 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']) |