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].