From 74721273c6af3bc3ef3fdaa50c52a3dd81e81a74 Mon Sep 17 00:00:00 2001 From: Johnny Chen Date: Tue, 7 Dec 2010 17:08:16 +0000 Subject: [PATCH] The do_simple_disasm() also needs to be modified to accommodate the recent changes to main.m. llvm-svn: 121150 --- lldb/test/foundation/TestFoundationDisassembly.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lldb/test/foundation/TestFoundationDisassembly.py b/lldb/test/foundation/TestFoundationDisassembly.py index 12568a2d6587..8722fab23a8e 100644 --- a/lldb/test/foundation/TestFoundationDisassembly.py +++ b/lldb/test/foundation/TestFoundationDisassembly.py @@ -94,6 +94,8 @@ class FoundationDisassembleTestCase(TestBase): # Do the disassemble for the currently stopped function. self.runCmd("disassemble -f") + self.runCmd("process continue") + # Skip another breakpoint for +[NSString stringWithFormat:]. self.runCmd("process continue") # Followed by a.out`-[MyString initWithNSString:]. @@ -112,6 +114,8 @@ class FoundationDisassembleTestCase(TestBase): # Do the disassemble for the currently stopped function. self.runCmd("disassemble -f") + self.runCmd("process continue") + # Skip another breakpoint for -[MyString description]. self.runCmd("process continue") # Followed by -[NSAutoreleasePool release].