[Lldb-commits] [lldb] r219973 - Some more failure to bug tracking
Enrico Granata
egranata at apple.com
Thu Oct 16 15:27:17 PDT 2014
Author: enrico
Date: Thu Oct 16 17:27:17 2014
New Revision: 219973
URL: http://llvm.org/viewvc/llvm-project?rev=219973&view=rev
Log:
Some more failure to bug tracking
Modified:
lldb/trunk/test/expression_command/test/TestExprs.py
lldb/trunk/test/lang/cpp/dynamic-value/TestCppValueCast.py
lldb/trunk/test/lang/objc/hidden-ivars/TestHiddenIvars.py
Modified: lldb/trunk/test/expression_command/test/TestExprs.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/expression_command/test/TestExprs.py?rev=219973&r1=219972&r2=219973&view=diff
==============================================================================
--- lldb/trunk/test/expression_command/test/TestExprs.py (original)
+++ lldb/trunk/test/expression_command/test/TestExprs.py Thu Oct 16 17:27:17 2014
@@ -43,7 +43,7 @@ class BasicExprCommandsTestCase(TestBase
self.runCmd("run", RUN_SUCCEEDED)
- @unittest2.expectedFailure # llvm.org/pr17135: APFloat::toString does not identify the correct (i.e. least) precision.
+ @unittest2.expectedFailure("llvm.org/pr17135 <rdar://problem/14874559> APFloat::toString does not identify the correct (i.e. least) precision.")
def test_floating_point_expr_commands(self):
self.build_and_run()
Modified: lldb/trunk/test/lang/cpp/dynamic-value/TestCppValueCast.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/cpp/dynamic-value/TestCppValueCast.py?rev=219973&r1=219972&r2=219973&view=diff
==============================================================================
--- lldb/trunk/test/lang/cpp/dynamic-value/TestCppValueCast.py (original)
+++ lldb/trunk/test/lang/cpp/dynamic-value/TestCppValueCast.py Thu Oct 16 17:27:17 2014
@@ -12,8 +12,7 @@ class CppValueCastTestCase(TestBase):
mydir = TestBase.compute_mydir(__file__)
- # rdar://problem/10808472 SBValue::Cast test case is failing (virtual inheritance)
- @unittest2.expectedFailure
+ @unittest2.expectedFailure("rdar://problem/10808472 SBValue::Cast test case is failing (virtual inheritance)")
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
@python_api_test
@dsym_test
@@ -23,8 +22,7 @@ class CppValueCastTestCase(TestBase):
self.setTearDownCleanup(dictionary=self.d_virtual)
self.do_sbvalue_cast(self.exe_name)
- # rdar://problem/10808472 SBValue::Cast test case is failing (virtual inheritance)
- @unittest2.expectedFailure
+ @unittest2.expectedFailure("rdar://problem/10808472 SBValue::Cast test case is failing (virtual inheritance)")
@python_api_test
@dwarf_test
def test_value_cast_with_dwarf_and_virtual_inheritance(self):
Modified: lldb/trunk/test/lang/objc/hidden-ivars/TestHiddenIvars.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/objc/hidden-ivars/TestHiddenIvars.py?rev=219973&r1=219972&r2=219973&view=diff
==============================================================================
--- lldb/trunk/test/lang/objc/hidden-ivars/TestHiddenIvars.py (original)
+++ lldb/trunk/test/lang/objc/hidden-ivars/TestHiddenIvars.py Thu Oct 16 17:27:17 2014
@@ -26,7 +26,7 @@ class HiddenIvarsTestCase(TestBase):
self.buildDwarf()
self.expr()
- @unittest2.expectedFailure
+ @unittest2.expectedFailure("rdar://18683637")
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
@dsym_test
def test_frame_variable_with_dsym(self):
@@ -35,7 +35,7 @@ class HiddenIvarsTestCase(TestBase):
self.buildDsym()
self.frame_var()
- @unittest2.expectedFailure
+ @unittest2.expectedFailure("rdar://18683637")
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
@dwarf_test
def test_frame_variable_with_dwarf(self):
More information about the lldb-commits
mailing list