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

Johnny Chen johnny.chen at apple.com
Thu Nov 11 17:00:56 PST 2010


Author: johnny
Date: Thu Nov 11 19:00:56 2010
New Revision: 118869

URL: http://llvm.org/viewvc/llvm-project?rev=118869&view=rev
Log:
Add information for two bugs exposed by this test file.

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=118869&r1=118868&r2=118869&view=diff
==============================================================================
--- lldb/trunk/test/namespace/TestNamespace.py (original)
+++ lldb/trunk/test/namespace/TestNamespace.py Thu Nov 11 19:00:56 2010
@@ -19,6 +19,9 @@
 
     @unittest2.expectedFailure
     # rdar://problem/8659840
+    # runCmd: frame variable -c -G i
+    # runCmd failed!
+    # error: can't find global variable 'i'
     def test_with_dwarf_and_run_command(self):
         """Test that anonymous and named namespace variables display correctly."""
         self.buildDwarf()
@@ -60,6 +63,8 @@
             startstr = "main.cpp:%d: (int) A::B::j = 4" % self.line_var_j)
         # main.cpp:19: (int) A::B::j = 4
 
+        # rdar://problem/8660275
+        # test/namespace: 'expression -- i+j' not working
         #self.expect("expression -- i + j",
         #    startstr = "(int) $0 = 7")
         # (int) $0 = 7





More information about the lldb-commits mailing list