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:
Johnny Chen 2010-10-15 19:06:16 +00:00
parent 59b34c2bb4
commit 7c2a28eba0
1 changed files with 6 additions and 0 deletions

View File

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