[Lldb-commits] [lldb] r118251 - /lldb/trunk/test/class_types/TestClassTypes.py

Johnny Chen johnny.chen at apple.com
Thu Nov 4 10:26:50 PDT 2010


Author: johnny
Date: Thu Nov  4 12:26:50 2010
New Revision: 118251

URL: http://llvm.org/viewvc/llvm-project?rev=118251&view=rev
Log:
Add two @skip decorators for assertion abort:

    @unittest2.skip("rdar://problem/8630601 Assertion failed: (result_valobj_sp.get()), function EvaluateExpression, file CommandObjectExpression.cpp, line 227.")

Modified:
    lldb/trunk/test/class_types/TestClassTypes.py

Modified: lldb/trunk/test/class_types/TestClassTypes.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/class_types/TestClassTypes.py?rev=118251&r1=118250&r2=118251&view=diff
==============================================================================
--- lldb/trunk/test/class_types/TestClassTypes.py (original)
+++ lldb/trunk/test/class_types/TestClassTypes.py Thu Nov  4 12:26:50 2010
@@ -36,6 +36,7 @@
         self.breakpoint_creation_by_filespec_python()
 
     @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
+    @unittest2.skip("rdar://problem/8630601 Assertion failed: (result_valobj_sp.get()), function EvaluateExpression, file CommandObjectExpression.cpp, line 227.")
     # rdar://problem/8557478
     # test/class_types test failures: runCmd: expr this->m_c_int
     def test_with_dsym_and_expr_parser(self):
@@ -43,6 +44,7 @@
         self.buildDsym()
         self.class_types_expr_parser()
 
+    @unittest2.skip("rdar://problem/8630601 Assertion failed: (result_valobj_sp.get()), function EvaluateExpression, file CommandObjectExpression.cpp, line 227.")
     # rdar://problem/8557478
     # test/class_types test failures: runCmd: expr this->m_c_int
     def test_with_dwarf_and_expr_parser(self):





More information about the lldb-commits mailing list