forked from OSchip/llvm-project
Add two @expectedFailure decorators for:
# rdar://problem/8557478 # test/class_types test failures: runCmd: expr this->m_c_int llvm-svn: 116609
This commit is contained in:
parent
59b34c2bb4
commit
7c2a28eba0
|
@ -36,11 +36,17 @@ class ClassTypesTestCase(TestBase):
|
|||
self.breakpoint_creation_by_filespec_python()
|
||||
|
||||
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
|
||||
@unittest2.expectedFailure
|
||||
# rdar://problem/8557478
|
||||
# test/class_types test failures: runCmd: expr this->m_c_int
|
||||
def test_with_dsym_and_expr_parser(self):
|
||||
"""Test 'frame variable this' and 'expr this' when stopped inside a constructor."""
|
||||
self.buildDsym()
|
||||
self.class_types_expr_parser()
|
||||
|
||||
@unittest2.expectedFailure
|
||||
# rdar://problem/8557478
|
||||
# test/class_types test failures: runCmd: expr this->m_c_int
|
||||
def test_with_dwarf_and_expr_parser(self):
|
||||
"""Test 'frame variable this' and 'expr this' when stopped inside a constructor."""
|
||||
self.buildDwarf()
|
||||
|
|
Loading…
Reference in New Issue