[Lldb-commits] [lldb] r116609 - /lldb/trunk/test/class_types/TestClassTypes.py
Johnny Chen
johnny.chen at apple.com
Fri Oct 15 12:06:16 PDT 2010
Author: johnny
Date: Fri Oct 15 14:06:16 2010
New Revision: 116609
URL: http://llvm.org/viewvc/llvm-project?rev=116609&view=rev
Log:
Add two @expectedFailure decorators for:
# rdar://problem/8557478
# test/class_types test failures: runCmd: expr this->m_c_int
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=116609&r1=116608&r2=116609&view=diff
==============================================================================
--- lldb/trunk/test/class_types/TestClassTypes.py (original)
+++ lldb/trunk/test/class_types/TestClassTypes.py Fri Oct 15 14:06:16 2010
@@ -36,11 +36,17 @@
self.breakpoint_creation_by_filespec_python()
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
+ @unittest2.expectedFailure
+ # rdar://problem/8557478
+ # test/class_types test failures: runCmd: expr this->m_c_int
def test_with_dsym_and_expr_parser(self):
"""Test 'frame variable this' and 'expr this' when stopped inside a constructor."""
self.buildDsym()
self.class_types_expr_parser()
+ @unittest2.expectedFailure
+ # rdar://problem/8557478
+ # test/class_types test failures: runCmd: expr this->m_c_int
def test_with_dwarf_and_expr_parser(self):
"""Test 'frame variable this' and 'expr this' when stopped inside a constructor."""
self.buildDwarf()
More information about the lldb-commits
mailing list