[Lldb-commits] [lldb] r220003 - Add a few more bug IDs for x'fail test cases

Enrico Granata egranata at apple.com
Thu Oct 16 17:47:44 PDT 2014


Author: enrico
Date: Thu Oct 16 19:47:44 2014
New Revision: 220003

URL: http://llvm.org/viewvc/llvm-project?rev=220003&view=rev
Log:
Add a few more bug IDs for x'fail test cases

Modified:
    lldb/trunk/test/functionalities/watchpoint/variable_out_of_scope/TestWatchedVarHitWhenInScope.py
    lldb/trunk/test/lang/c/shared_lib/TestSharedLib.py
    lldb/trunk/test/lang/cpp/rvalue-references/TestRvalueReferences.py

Modified: lldb/trunk/test/functionalities/watchpoint/variable_out_of_scope/TestWatchedVarHitWhenInScope.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/watchpoint/variable_out_of_scope/TestWatchedVarHitWhenInScope.py?rev=220003&r1=220002&r2=220003&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/watchpoint/variable_out_of_scope/TestWatchedVarHitWhenInScope.py (original)
+++ lldb/trunk/test/functionalities/watchpoint/variable_out_of_scope/TestWatchedVarHitWhenInScope.py Thu Oct 16 19:47:44 2014
@@ -21,14 +21,14 @@ class WatchedVariableHitWhenInScopeTestC
     #
 
     @dsym_test
-    @unittest2.expectedFailure
+    @unittest2.expectedFailure("rdar://problem/18685649")
     def test_watched_var_should_only_hit_when_in_scope_with_dsym(self):
         """Test that a variable watchpoint should only hit when in scope."""
         self.buildDsym(dictionary=self.d)
         self.setTearDownCleanup(dictionary=self.d)
         self.watched_var()
 
-    @unittest2.expectedFailure
+    @unittest2.expectedFailure("rdar://problem/18685649")
     @dwarf_test
     def test_watched_var_should_only_hit_when_in_scope_with_dwarf(self):
         """Test that a variable watchpoint should only hit when in scope."""

Modified: lldb/trunk/test/lang/c/shared_lib/TestSharedLib.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/c/shared_lib/TestSharedLib.py?rev=220003&r1=220002&r2=220003&view=diff
==============================================================================
--- lldb/trunk/test/lang/c/shared_lib/TestSharedLib.py (original)
+++ lldb/trunk/test/lang/c/shared_lib/TestSharedLib.py Thu Oct 16 19:47:44 2014
@@ -76,8 +76,7 @@ class SharedLibTestCase(TestBase):
         self.expect("expression --show-types -- *my_foo_ptr", VARIABLES_DISPLAYED_CORRECTLY,
             substrs = ["(foo)", "(sub_foo)", "other_element = 3"])
 
-    @unittest2.expectedFailure
-    # rdar://problem/10381325
+    @unittest2.expectedFailure("rdar://problem/10381325")
     def frame_var(self):
         """Test that types work when defined in a shared library and forward-declared in the main executable"""
 	self.common_setup()

Modified: lldb/trunk/test/lang/cpp/rvalue-references/TestRvalueReferences.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/cpp/rvalue-references/TestRvalueReferences.py?rev=220003&r1=220002&r2=220003&view=diff
==============================================================================
--- lldb/trunk/test/lang/cpp/rvalue-references/TestRvalueReferences.py (original)
+++ lldb/trunk/test/lang/cpp/rvalue-references/TestRvalueReferences.py Thu Oct 16 19:47:44 2014
@@ -11,8 +11,7 @@ class RvalueReferencesTestCase(TestBase)
     mydir = TestBase.compute_mydir(__file__)
     
     @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
-    #rdar://problem/11479676
-    @expectedFailureClang
+    @expectedFailureClang("rdar://problem/11479676")
     @dsym_test
     def test_with_dsym_and_run_command(self):
         """Test that rvalues are supported in the C++ expression parser"""
@@ -20,9 +19,9 @@ class RvalueReferencesTestCase(TestBase)
         self.static_method_commands()
 
     #rdar://problem/11479676
-    @expectedFailureClang # pr16762: Expression evaluation of an rvalue-reference does not show the correct type.
-    @expectedFailureGcc # GCC (4.7) does not emit correct DWARF tags for rvalue-references
-    @expectedFailureIcc # ICC (13.1, 14-beta) do not emit DW_TAG_rvalue_reference_type.
+    @expectedFailureClang("rdar://problem/11479676 pr16762: Expression evaluation of an rvalue-reference does not show the correct type.")
+    @expectedFailureGcc("GCC (4.7) does not emit correct DWARF tags for rvalue-references")
+    @expectedFailureIcc("ICC (13.1, 14-beta) do not emit DW_TAG_rvalue_reference_type.")
     @dwarf_test
     def test_with_dwarf_and_run_command(self):
         """Test that rvalues are supported in the C++ expression parser"""





More information about the lldb-commits mailing list