[Lldb-commits] [lldb] r136650 - /lldb/trunk/test/lang/cpp/namespace/TestNamespace.py
Johnny Chen
johnny.chen at apple.com
Mon Aug 1 14:30:30 PDT 2011
Author: johnny
Date: Mon Aug 1 16:30:30 2011
New Revision: 136650
URL: http://llvm.org/viewvc/llvm-project?rev=136650&view=rev
Log:
Remove the @expectedFailure decorator as rdar://problem/8668674 is fixed.
Modified:
lldb/trunk/test/lang/cpp/namespace/TestNamespace.py
Modified: lldb/trunk/test/lang/cpp/namespace/TestNamespace.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/cpp/namespace/TestNamespace.py?rev=136650&r1=136649&r2=136650&view=diff
==============================================================================
--- lldb/trunk/test/lang/cpp/namespace/TestNamespace.py (original)
+++ lldb/trunk/test/lang/cpp/namespace/TestNamespace.py Mon Aug 1 16:30:30 2011
@@ -12,7 +12,6 @@
mydir = os.path.join("lang", "cpp", "namespace")
# rdar://problem/8668674
- @unittest2.expectedFailure
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
def test_with_dsym_and_run_command(self):
"""Test that anonymous and named namespace variables display correctly."""
@@ -20,7 +19,6 @@
self.namespace_variable_commands()
# rdar://problem/8668674
- @unittest2.expectedFailure
def test_with_dwarf_and_run_command(self):
"""Test that anonymous and named namespace variables display correctly."""
self.buildDwarf()
@@ -102,9 +100,9 @@
# rdar://problem/8668674
# 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$'])
- self.expect("expression -- 'A::B::j'", VARIABLES_DISPLAYED_CORRECTLY,
+ self.expect("expression -- A::B::j", VARIABLES_DISPLAYED_CORRECTLY,
patterns = [' = 4$'])
More information about the lldb-commits
mailing list