[Lldb-commits] [lldb] r138590 - /lldb/trunk/test/logging/TestLogging.py
Johnny Chen
johnny.chen at apple.com
Thu Aug 25 14:51:45 PDT 2011
Author: johnny
Date: Thu Aug 25 16:51:45 2011
New Revision: 138590
URL: http://llvm.org/viewvc/llvm-project?rev=138590&view=rev
Log:
Modify the loggings output oracle to fix test suite failure, after the recent change to CommandInterpreter.cpp.
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=138590&r1=138589&r2=138590&view=diff
==============================================================================
--- lldb/trunk/test/logging/TestLogging.py (original)
+++ lldb/trunk/test/logging/TestLogging.py Thu Aug 25 16:51:45 2011
@@ -46,19 +46,19 @@
"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",
+ "com.apple.main-thread HandleCommand, command succeeded\n",
"com.apple.main-thread Processing command: bp set -n main\n",
"com.apple.main-thread HandleCommand, cmd_obj : 'breakpoint set'\n",
"com.apple.main-thread HandleCommand, revised_command_line: 'breakpoint set -n main'\n",
"com.apple.main-thread HandleCommand, wants_raw_input:'False'\n",
"com.apple.main-thread HandleCommand, command line after removing command name(s): '-n main'\n",
- "\n",
+ "com.apple.main-thread HandleCommand, command succeeded\n",
"com.apple.main-thread Processing command: bp l\n",
"com.apple.main-thread HandleCommand, cmd_obj : 'breakpoint list'\n",
"com.apple.main-thread HandleCommand, revised_command_line: 'breakpoint l'\n",
"com.apple.main-thread HandleCommand, wants_raw_input:'False'\n",
"com.apple.main-thread HandleCommand, command line after removing command name(s): ''\n",
- "\n"
+ "com.apple.main-thread HandleCommand, command succeeded\n",
]
self.assertTrue (os.path.isfile (log_file))
More information about the lldb-commits
mailing list