[Lldb-commits] [lldb] r118265 - in /lldb/trunk/test: class_types/TestClassTypes.py forward/TestForwardDeclaration.py
Johnny Chen
johnny.chen at apple.com
Thu Nov 4 15:49:00 PDT 2010
Author: johnny
Date: Thu Nov 4 17:49:00 2010
New Revision: 118265
URL: http://llvm.org/viewvc/llvm-project?rev=118265&view=rev
Log:
Remove the @skip decorators for assertion aborts. Jim fixed them in r118255.
Modified:
lldb/trunk/test/class_types/TestClassTypes.py
lldb/trunk/test/forward/TestForwardDeclaration.py
Modified: lldb/trunk/test/class_types/TestClassTypes.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/class_types/TestClassTypes.py?rev=118265&r1=118264&r2=118265&view=diff
==============================================================================
--- lldb/trunk/test/class_types/TestClassTypes.py (original)
+++ lldb/trunk/test/class_types/TestClassTypes.py Thu Nov 4 17:49:00 2010
@@ -36,7 +36,6 @@
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):
@@ -44,7 +43,6 @@
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):
Modified: lldb/trunk/test/forward/TestForwardDeclaration.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/forward/TestForwardDeclaration.py?rev=118265&r1=118264&r2=118265&view=diff
==============================================================================
--- lldb/trunk/test/forward/TestForwardDeclaration.py (original)
+++ lldb/trunk/test/forward/TestForwardDeclaration.py Thu Nov 4 17:49:00 2010
@@ -9,15 +9,12 @@
mydir = "forward"
- @unittest2.skip("rdar://problem/8630601 Assertion failed: (result_valobj_sp.get()), function EvaluateExpression, file CommandObjectExpression.cpp, line 227.")
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
def test_with_dsym_and_run_command(self):
"""Display *bar_ptr when stopped on a function with forward declaration of struct bar."""
self.buildDsym()
self.forward_declaration()
- # The expected failure happens before the assert, so there's no need to @skip.
- #@unittest2.skip("rdar://problem/8630601 Assertion failed: (result_valobj_sp.get()), function EvaluateExpression, file CommandObjectExpression.cpp, line 227.")
# rdar://problem/8546815
# './dotest.py -v -t forward' fails for test_with_dwarf_and_run_command
@unittest2.expectedFailure
More information about the lldb-commits
mailing list