diff options
author | Jim Ingham <jingham@apple.com> | 2016-02-03 19:45:31 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2016-02-03 19:45:31 +0000 |
commit | 22eeb7227c9fcd4d6b5f6cddaacadece580002f4 (patch) | |
tree | b555b94e9f60909ea745d71b6993685c064aba62 /lldb/packages/Python/lldbsuite | |
parent | 45b6159ed34dd4ce6e58ac67d66044b057d9001f (diff) | |
download | bcm5719-llvm-22eeb7227c9fcd4d6b5f6cddaacadece580002f4.tar.gz bcm5719-llvm-22eeb7227c9fcd4d6b5f6cddaacadece580002f4.zip |
The SetStopInfo from a Mach Exception was setting the stop
reason to None when we stop due to a trace, then noticed that
we were on a breakpoint that was not valid for the current thread.
That should actually have set it back to trace.
This was pr26441 (<rdar://problem/24470203>)
llvm-svn: 259684
Diffstat (limited to 'lldb/packages/Python/lldbsuite')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/consecutive_breakpoints/TestConsecutiveBreakpoints.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/consecutive_breakpoints/TestConsecutiveBreakpoints.py b/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/consecutive_breakpoints/TestConsecutiveBreakpoints.py index 8aa1ee75ef0..d2bd9f2812d 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/consecutive_breakpoints/TestConsecutiveBreakpoints.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/consecutive_breakpoints/TestConsecutiveBreakpoints.py @@ -79,7 +79,6 @@ class ConsecutiveBreakpointsTestCase(TestBase): self.finish_test() @no_debug_info_test - @expectedFailureDarwin(bugnumber="llvm.org/pr26441") def test_single_step_thread_specific(self): """Test that single step stops, even though the second breakpoint is not valid.""" self.prepare_test() |