Remove the @expectedFailure decorator as rdar://problem/8668674 is fixed.

llvm-svn: 136650
This commit is contained in:
Johnny Chen 2011-08-01 21:30:30 +00:00
parent 985e740cd9
commit 098781b55e
1 changed files with 2 additions and 4 deletions

View File

@ -12,7 +12,6 @@ class NamespaceTestCase(TestBase):
mydir = os.path.join("lang", "cpp", "namespace") mydir = os.path.join("lang", "cpp", "namespace")
# rdar://problem/8668674 # rdar://problem/8668674
@unittest2.expectedFailure
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin") @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
def test_with_dsym_and_run_command(self): def test_with_dsym_and_run_command(self):
"""Test that anonymous and named namespace variables display correctly.""" """Test that anonymous and named namespace variables display correctly."""
@ -20,7 +19,6 @@ class NamespaceTestCase(TestBase):
self.namespace_variable_commands() self.namespace_variable_commands()
# rdar://problem/8668674 # rdar://problem/8668674
@unittest2.expectedFailure
def test_with_dwarf_and_run_command(self): def test_with_dwarf_and_run_command(self):
"""Test that anonymous and named namespace variables display correctly.""" """Test that anonymous and named namespace variables display correctly."""
self.buildDwarf() self.buildDwarf()
@ -102,9 +100,9 @@ class NamespaceTestCase(TestBase):
# rdar://problem/8668674 # rdar://problem/8668674
# expression command with fully qualified namespace for a variable does not work # expression command with fully qualified namespace for a variable does not work
self.expect("expression -- '::i'", VARIABLES_DISPLAYED_CORRECTLY, self.expect("expression -- ::i", VARIABLES_DISPLAYED_CORRECTLY,
patterns = [' = 3$']) patterns = [' = 3$'])
self.expect("expression -- 'A::B::j'", VARIABLES_DISPLAYED_CORRECTLY, self.expect("expression -- A::B::j", VARIABLES_DISPLAYED_CORRECTLY,
patterns = [' = 4$']) patterns = [' = 4$'])