[Lldb-commits] [lldb] r119160 - /lldb/trunk/test/namespace/TestNamespace.py

Johnny Chen johnny.chen at apple.com
Mon Nov 15 09:42:22 PST 2010


Author: johnny
Date: Mon Nov 15 11:42:22 2010
New Revision: 119160

URL: http://llvm.org/viewvc/llvm-project?rev=119160&view=rev
Log:
Remove the @expectedFailure decorator and uncomment 'expression -- i + j" test,
as both rdar://problem/8659840 and rdar://problem/8660275 have been fixed.

Modified:
    lldb/trunk/test/namespace/TestNamespace.py

Modified: lldb/trunk/test/namespace/TestNamespace.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/namespace/TestNamespace.py?rev=119160&r1=119159&r2=119160&view=diff
==============================================================================
--- lldb/trunk/test/namespace/TestNamespace.py (original)
+++ lldb/trunk/test/namespace/TestNamespace.py Mon Nov 15 11:42:22 2010
@@ -17,7 +17,6 @@
         self.buildDsym()
         self.namespace_variable_commands()
 
-    @unittest2.expectedFailure
     # rdar://problem/8659840
     # runCmd: frame variable -c -G i
     # runCmd failed!
@@ -65,8 +64,8 @@
 
         # rdar://problem/8660275
         # test/namespace: 'expression -- i+j' not working
-        #self.expect("expression -- i + j",
-        #    startstr = "(int) $0 = 7")
+        self.expect("expression -- i + j",
+            startstr = "(int) $0 = 7")
         # (int) $0 = 7
 
 if __name__ == '__main__':





More information about the lldb-commits mailing list