forked from OSchip/llvm-project
Removed the two @expectedFailure decorators for expression parser, they have been fixed.
Also chnaged the expected string for 'frame variable this' from '(class C *const) this =' to 'C *const) this =' for the time being, while investigating the different output for tot r115023. runCmd: frame variable this output: (struct C *const) this = 0x0000000100000c2e llvm-svn: 115042
This commit is contained in:
parent
37614d875f
commit
3801fbdee8
|
@ -35,13 +35,11 @@ class ClassTypesTestCase(TestBase):
|
|||
self.breakpoint_creation_by_filespec_python()
|
||||
|
||||
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
|
||||
@unittest2.expectedFailure
|
||||
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
|
||||
def test_with_dwarf_and_expr_parser(self):
|
||||
"""Test 'frame variable this' and 'expr this' when stopped inside a constructor."""
|
||||
self.buildDwarf()
|
||||
|
@ -69,7 +67,7 @@ class ClassTypesTestCase(TestBase):
|
|||
|
||||
# We should be stopped on the ctor function of class C.
|
||||
self.expect("frame variable this", VARIABLES_DISPLAYED_CORRECTLY,
|
||||
startstr = '(class C *const) this = ')
|
||||
substrs = ['C *const) this = '])
|
||||
|
||||
def breakpoint_creation_by_filespec_python(self):
|
||||
"""Use Python APIs to create a breakpoint by (filespec, line)."""
|
||||
|
|
Loading…
Reference in New Issue