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
This commit is contained in:
Zachary Turner 2015-09-02 22:40:40 +00:00
parent 07a2ee1aff
commit 428ffcfa8d
3 changed files with 6 additions and 0 deletions

View File

@ -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."""

View File

@ -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)."""

View File

@ -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."""