Thread::SetState() is not being called upon hitting the breakpoint
Given that, this test will never pass Marking as expected failure pending a fix llvm-svn: 193830
This commit is contained in:
parent
2dba1135db
commit
3a48185f79
|
|
@ -14,6 +14,7 @@ class ThreadStateTestCase(TestBase):
|
|||
|
||||
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
|
||||
@dsym_test
|
||||
@unittest2.expectedFailure("rdar://15367566")
|
||||
def test_state_after_breakpoint_with_dsym(self):
|
||||
"""Test thread state after breakpoint."""
|
||||
self.buildDsym(dictionary=self.getBuildFlags(use_cpp11=False))
|
||||
|
|
@ -21,6 +22,7 @@ class ThreadStateTestCase(TestBase):
|
|||
|
||||
@expectedFailureFreeBSD('llvm.org/pr15824')
|
||||
@dwarf_test
|
||||
@unittest2.expectedFailure("rdar://15367566")
|
||||
def test_state_after_breakpoint_with_dwarf(self):
|
||||
"""Test thread state after breakpoint."""
|
||||
self.buildDwarf(dictionary=self.getBuildFlags(use_cpp11=False))
|
||||
|
|
|
|||
Loading…
Reference in New Issue