[Lldb-commits] [lldb] r121150 - /lldb/trunk/test/foundation/TestFoundationDisassembly.py

Johnny Chen johnny.chen at apple.com
Tue Dec 7 09:08:17 PST 2010


Author: johnny
Date: Tue Dec  7 11:08:16 2010
New Revision: 121150

URL: http://llvm.org/viewvc/llvm-project?rev=121150&view=rev
Log:
The do_simple_disasm() also needs to be modified to accommodate the recent changes
to main.m.

Modified:
    lldb/trunk/test/foundation/TestFoundationDisassembly.py

Modified: lldb/trunk/test/foundation/TestFoundationDisassembly.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/foundation/TestFoundationDisassembly.py?rev=121150&r1=121149&r2=121150&view=diff
==============================================================================
--- lldb/trunk/test/foundation/TestFoundationDisassembly.py (original)
+++ lldb/trunk/test/foundation/TestFoundationDisassembly.py Tue Dec  7 11:08:16 2010
@@ -95,6 +95,8 @@
         self.runCmd("disassemble -f")
 
         self.runCmd("process continue")
+        # Skip another breakpoint for +[NSString stringWithFormat:].
+        self.runCmd("process continue")
 
         # Followed by a.out`-[MyString initWithNSString:].
         self.expect("thread backtrace", "Stop at a.out`-[MyString initWithNSString:]",
@@ -113,6 +115,8 @@
         self.runCmd("disassemble -f")
 
         self.runCmd("process continue")
+        # Skip another breakpoint for -[MyString description].
+        self.runCmd("process continue")
 
         # Followed by -[NSAutoreleasePool release].
         self.expect("thread backtrace", "Stop at -[NSAutoreleasePool release]",





More information about the lldb-commits mailing list