[Lldb-commits] [lldb] r129937 - /lldb/trunk/test/logging/TestLogging.py
Johnny Chen
johnny.chen at apple.com
Thu Apr 21 13:55:57 PDT 2011
Author: johnny
Date: Thu Apr 21 15:55:57 2011
New Revision: 129937
URL: http://llvm.org/viewvc/llvm-project?rev=129937&view=rev
Log:
Hopefully fix the last fallout of 'commands' to 'command' change.
Modified:
lldb/trunk/test/logging/TestLogging.py
Modified: lldb/trunk/test/logging/TestLogging.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/logging/TestLogging.py?rev=129937&r1=129936&r2=129937&view=diff
==============================================================================
--- lldb/trunk/test/logging/TestLogging.py (original)
+++ lldb/trunk/test/logging/TestLogging.py Thu Apr 21 15:55:57 2011
@@ -34,16 +34,16 @@
self.runCmd ("log enable lldb commands -f " + log_file)
- self.runCmd ("commands alias bp breakpoint")
+ self.runCmd ("command alias bp breakpoint")
self.runCmd ("bp set -n main")
self.runCmd ("bp l")
expected_log_lines = [
- "com.apple.main-thread Processing command: commands alias bp breakpoint\n",
- "com.apple.main-thread HandleCommand, cmd_obj : 'commands alias'\n",
- "com.apple.main-thread HandleCommand, revised_command_line: 'commands alias bp breakpoint'\n",
+ "com.apple.main-thread Processing command: command alias bp breakpoint\n",
+ "com.apple.main-thread HandleCommand, cmd_obj : 'command alias'\n",
+ "com.apple.main-thread HandleCommand, revised_command_line: 'command alias bp breakpoint'\n",
"com.apple.main-thread HandleCommand, wants_raw_input:'True'\n",
"com.apple.main-thread HandleCommand, command line after removing command name(s): 'bp breakpoint'\n",
"\n",
More information about the lldb-commits
mailing list