diff options
author | Zachary Turner <zturner@google.com> | 2015-09-02 22:40:40 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2015-09-02 22:40:40 +0000 |
commit | 428ffcfa8dfb0acd0c728abf77f3856f0909a30b (patch) | |
tree | d05cc7921a90e75798d46b3af11847fd72472819 | |
parent | 07a2ee1aff325949ce3bb62c31b80faf9cb4a7cf (diff) | |
download | bcm5719-llvm-428ffcfa8dfb0acd0c728abf77f3856f0909a30b.tar.gz bcm5719-llvm-428ffcfa8dfb0acd0c728abf77f3856f0909a30b.zip |
XFAIL tests that rely on exact thread counts.
On Windows we have to deal with OS created threads, so we can never
know the exact number of threads.
llvm.org/pr24681
llvm-svn: 246723
3 files changed, 6 insertions, 0 deletions
diff --git a/lldb/test/functionalities/thread/exit_during_step/TestExitDuringStep.py b/lldb/test/functionalities/thread/exit_during_step/TestExitDuringStep.py index 1f6c81b57c7..0908bbd217d 100644 --- a/lldb/test/functionalities/thread/exit_during_step/TestExitDuringStep.py +++ b/lldb/test/functionalities/thread/exit_during_step/TestExitDuringStep.py @@ -23,6 +23,7 @@ class ExitDuringStepTestCase(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/pr24681") @dwarf_test def test_thread_state_is_stopped_with_dwarf(self): """Test thread exit during step handling.""" @@ -51,6 +52,7 @@ class ExitDuringStepTestCase(TestBase): self.exit_during_step_in_test() @skipIfFreeBSD # llvm.org/pr21411: test is hanging + @expectedFailureWindows("llvm.org/pr24681") @dwarf_test def test_with_dwarf(self): """Test thread exit during step handling.""" @@ -58,6 +60,7 @@ class ExitDuringStepTestCase(TestBase): self.exit_during_step_inst_test() @skipIfFreeBSD # llvm.org/pr21411: test is hanging + @expectedFailureWindows("llvm.org/pr24681") @dwarf_test def test_step_over_with_dwarf(self): """Test thread exit during step-over handling.""" @@ -65,6 +68,7 @@ class ExitDuringStepTestCase(TestBase): self.exit_during_step_over_test() @skipIfFreeBSD # llvm.org/pr21411: test is hanging + @expectedFailureWindows("llvm.org/pr24681") @dwarf_test def test_step_in_with_dwarf(self): """Test thread exit during step-in handling.""" diff --git a/lldb/test/functionalities/thread/step_out/TestThreadStepOut.py b/lldb/test/functionalities/thread/step_out/TestThreadStepOut.py index 84d17c81cf2..ee9a247aa62 100644 --- a/lldb/test/functionalities/thread/step_out/TestThreadStepOut.py +++ b/lldb/test/functionalities/thread/step_out/TestThreadStepOut.py @@ -51,6 +51,7 @@ class ThreadStepOutTestCase(TestBase): @skipIfLinux # Test occasionally times out on the Linux build bot @expectedFailureLinux("llvm.org/pr23477") # Test occasionally times out on the Linux build bot @expectedFailureFreeBSD("llvm.org/pr19347") + @expectedFailureWindows("llvm.org/pr24681") @dwarf_test def test_python_with_dwarf(self): """Test thread step out on one thread via Python API (dwarf).""" diff --git a/lldb/test/functionalities/thread/thread_exit/TestThreadExit.py b/lldb/test/functionalities/thread/thread_exit/TestThreadExit.py index 7b8ed18512b..cfb93fd24c4 100644 --- a/lldb/test/functionalities/thread/thread_exit/TestThreadExit.py +++ b/lldb/test/functionalities/thread/thread_exit/TestThreadExit.py @@ -22,6 +22,7 @@ class ThreadExitTestCase(TestBase): @expectedFailureDarwin("llvm.org/pr15824") # thread states not properly maintained @expectedFailureFreeBSD("llvm.org/pr18190") # thread states not properly maintained + @expectedFailureWindows("llvm.org/pr24681") @dwarf_test def test_with_dwarf(self): """Test thread exit handling.""" |