XFAIL tests on Windows that are failing to resolve breakpoints.

llvm.org/pr24668

llvm-svn: 246670
This commit is contained in:
Zachary Turner 2015-09-02 16:47:29 +00:00
parent 991dae85d9
commit 656ef0b277
4 changed files with 8 additions and 0 deletions

View File

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

View File

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

View File

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

View File

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