diff options
| author | Zachary Turner <zturner@google.com> | 2015-09-02 16:47:29 +0000 |
|---|---|---|
| committer | Zachary Turner <zturner@google.com> | 2015-09-02 16:47:29 +0000 |
| commit | 656ef0b277393551235141374d45d1df418b84e0 (patch) | |
| tree | ef82a3d4a2773f64148e67cce7a5890c5e1b3afa /lldb/test/functionalities/thread | |
| parent | 991dae85d9da1ac8efec109cb9eee33e7f8ac143 (diff) | |
| download | bcm5719-llvm-656ef0b277393551235141374d45d1df418b84e0.tar.gz bcm5719-llvm-656ef0b277393551235141374d45d1df418b84e0.zip | |
XFAIL tests on Windows that are failing to resolve breakpoints.
llvm.org/pr24668
llvm-svn: 246670
Diffstat (limited to 'lldb/test/functionalities/thread')
4 files changed, 8 insertions, 0 deletions
diff --git a/lldb/test/functionalities/thread/create_during_step/TestCreateDuringStep.py b/lldb/test/functionalities/thread/create_during_step/TestCreateDuringStep.py index b13fec6fb86..fd8cf77b7e8 100644 --- a/lldb/test/functionalities/thread/create_during_step/TestCreateDuringStep.py +++ b/lldb/test/functionalities/thread/create_during_step/TestCreateDuringStep.py @@ -39,6 +39,7 @@ class CreateDuringStepTestCase(TestBase): @expectedFailureDarwin("llvm.org/pr15824") # thread states not properly maintained @expectedFailureFreeBSD("llvm.org/pr18190") # thread states not properly maintained @expectedFailureLinux("llvm.org/pr15824") # thread states not properly maintained + @expectedFailureWindows("llvm.org/pr24668") # Breakpoints not resolved correctly @dwarf_test def test_step_inst_with_dwarf(self): """Test thread creation during step-inst handling.""" @@ -48,6 +49,7 @@ class CreateDuringStepTestCase(TestBase): @expectedFailureDarwin("llvm.org/pr15824") # thread states not properly maintained @expectedFailureFreeBSD("llvm.org/pr18190") # thread states not properly maintained @expectedFailureLinux("llvm.org/pr15824") # thread states not properly maintained + @expectedFailureWindows("llvm.org/pr24668") # Breakpoints not resolved correctly @dwarf_test def test_step_over_with_dwarf(self): """Test thread creation during step-over handling.""" @@ -57,6 +59,7 @@ class CreateDuringStepTestCase(TestBase): @expectedFailureDarwin("llvm.org/pr15824") # thread states not properly maintained @expectedFailureFreeBSD("llvm.org/pr18190") # thread states not properly maintained @expectedFailureLinux("llvm.org/pr15824") # thread states not properly maintained + @expectedFailureWindows("llvm.org/pr24668") # Breakpoints not resolved correctly @dwarf_test def test_step_in_with_dwarf(self): """Test thread creation during step-in handling.""" diff --git a/lldb/test/functionalities/thread/exit_during_break/TestExitDuringBreak.py b/lldb/test/functionalities/thread/exit_during_break/TestExitDuringBreak.py index 860ef8bcd38..9d6974d8865 100644 --- a/lldb/test/functionalities/thread/exit_during_break/TestExitDuringBreak.py +++ b/lldb/test/functionalities/thread/exit_during_break/TestExitDuringBreak.py @@ -23,6 +23,7 @@ class ExitDuringBreakpointTestCase(TestBase): @expectedFailureDarwin("llvm.org/pr15824") # thread states not properly maintained @expectedFailureFreeBSD("llvm.org/pr18190") # thread states not properly maintained @expectedFailureLinux("llvm.org/pr15824") # thread states not properly maintained + @expectedFailureWindows("llvm.org/pr24668") # Breakpoints not resolved correctly @dwarf_test def test_with_dwarf(self): """Test thread exit during breakpoint handling.""" diff --git a/lldb/test/functionalities/thread/multi_break/TestMultipleBreakpoints.py b/lldb/test/functionalities/thread/multi_break/TestMultipleBreakpoints.py index 55b9042c1f5..bf0b2bbd16c 100644 --- a/lldb/test/functionalities/thread/multi_break/TestMultipleBreakpoints.py +++ b/lldb/test/functionalities/thread/multi_break/TestMultipleBreakpoints.py @@ -23,6 +23,7 @@ class MultipleBreakpointTestCase(TestBase): @expectedFailureDarwin("llvm.org/pr15824") # thread states not properly maintained @expectedFailureFreeBSD("llvm.org/pr18190") # thread states not properly maintained @expectedFailureLinux("llvm.org/pr15824") # thread states not properly maintained + @expectedFailureWindows("llvm.org/pr24668") # Breakpoints not resolved correctly @dwarf_test def test_with_dwarf(self): """Test simultaneous breakpoints in multiple threads.""" diff --git a/lldb/test/functionalities/thread/state/TestThreadStates.py b/lldb/test/functionalities/thread/state/TestThreadStates.py index d3c498e98c8..41b2c34a82b 100644 --- a/lldb/test/functionalities/thread/state/TestThreadStates.py +++ b/lldb/test/functionalities/thread/state/TestThreadStates.py @@ -23,6 +23,7 @@ class ThreadStateTestCase(TestBase): @expectedFailureDarwin("rdar://15367566") @expectedFailureFreeBSD('llvm.org/pr15824') @expectedFailureLinux("llvm.org/pr15824") # thread states not properly maintained + @expectedFailureWindows("llvm.org/pr24668") # Breakpoints not resolved correctly @dwarf_test def test_state_after_breakpoint_with_dwarf(self): """Test thread state after breakpoint.""" @@ -73,6 +74,7 @@ class ThreadStateTestCase(TestBase): @dwarf_test @unittest2.expectedFailure("llvm.org/pr16712") # thread states not properly maintained + @expectedFailureWindows("llvm.org/pr24668") # Breakpoints not resolved correctly def test_process_interrupt_with_dwarf(self): """Test process interrupt.""" self.buildDwarf(dictionary=self.getBuildFlags(use_cpp11=False)) @@ -88,6 +90,7 @@ class ThreadStateTestCase(TestBase): @dwarf_test @unittest2.expectedFailure("llvm.org/pr15824") # thread states not properly maintained + @expectedFailureWindows("llvm.org/pr24668") # Breakpoints not resolved correctly def test_process_state_with_dwarf(self): """Test thread states (comprehensive).""" self.buildDwarf(dictionary=self.getBuildFlags(use_cpp11=False)) |

