[Lldb-commits] [lldb] r144545 - /lldb/trunk/test/lang/cpp/stl/TestSTL.py

Johnny Chen johnny.chen at apple.com
Mon Nov 14 10:33:39 PST 2011


Author: johnny
Date: Mon Nov 14 12:33:39 2011
New Revision: 144545

URL: http://llvm.org/viewvc/llvm-project?rev=144545&view=rev
Log:
Add more info on the failure.

Modified:
    lldb/trunk/test/lang/cpp/stl/TestSTL.py

Modified: lldb/trunk/test/lang/cpp/stl/TestSTL.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/cpp/stl/TestSTL.py?rev=144545&r1=144544&r2=144545&view=diff
==============================================================================
--- lldb/trunk/test/lang/cpp/stl/TestSTL.py (original)
+++ lldb/trunk/test/lang/cpp/stl/TestSTL.py Mon Nov 14 12:33:39 2011
@@ -11,6 +11,7 @@
 
     mydir = os.path.join("lang", "cpp", "stl")
 
+    # rdar://problem/10400981
     @unittest2.expectedFailure
     @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
     def test_with_dsym(self):
@@ -18,6 +19,7 @@
         self.buildDsym()
         self.step_stl_exprs()
 
+    # rdar://problem/10400981
     @unittest2.expectedFailure
     def test_with_dwarf(self):
         """Test some expressions involving STL data types."""
@@ -64,6 +66,7 @@
         self.runCmd('expr for (int i = 0; i < hello_world.length(); ++i) { (void)printf("%c\\n", hello_world[i]); }')
 
         # rdar://problem/10373783
+        # rdar://problem/10400981
         self.expect('expr associative_array.size()',
             substrs = [' = 3'])
         self.expect('expr associative_array.count(hello_world)',





More information about the lldb-commits mailing list