[Lldb-commits] [lldb] r206760 - Add a comment to tests that XPASS on FreeBSD

Ed Maste emaste at freebsd.org
Mon Apr 21 08:19:18 PDT 2014


Author: emaste
Date: Mon Apr 21 10:19:18 2014
New Revision: 206760

URL: http://llvm.org/viewvc/llvm-project?rev=206760&view=rev
Log:
Add a comment to tests that XPASS on FreeBSD

Perhaps these should be @expectedFailureDarwin instead of
@unittest2.expectedFailure (applying to all hosts); I'm not aware of
the details in the rdars.

Just add a comment for now, for the benefit of anyone investigating
FreeBSD test issues in the future.

rdar://9980907
rdar://15367233

Modified:
    lldb/trunk/test/functionalities/inferior-assert/TestInferiorAssert.py
    lldb/trunk/test/lang/cpp/class_static/TestStaticVariables.py

Modified: lldb/trunk/test/functionalities/inferior-assert/TestInferiorAssert.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/inferior-assert/TestInferiorAssert.py?rev=206760&r1=206759&r2=206760&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/inferior-assert/TestInferiorAssert.py (original)
+++ lldb/trunk/test/functionalities/inferior-assert/TestInferiorAssert.py Mon Apr 21 10:19:18 2014
@@ -17,7 +17,7 @@ class AssertingInferiorTestCase(TestBase
         self.inferior_asserting()
 
     @expectedFailurei386 # llvm.org/pr17384: lldb needs to be aware of linux-vdso.so to unwind stacks properly'
-    @unittest2.expectedFailure("rdar://15367233")
+    @unittest2.expectedFailure("rdar://15367233") # XPASS on FreeBSD w/ Clang 3.4 and libc++
     def test_inferior_asserting_dwarf(self):
         """Test that lldb reliably catches the inferior asserting (command)."""
         self.buildDwarf()
@@ -70,7 +70,7 @@ class AssertingInferiorTestCase(TestBase
         self.inferior_asserting_step()
 
     @expectedFailurei386 # llvm.org/pr17384: lldb needs to be aware of linux-vdso.so to unwind stacks properly
-    @unittest2.expectedFailure("rdar://15367233")
+    @unittest2.expectedFailure("rdar://15367233") # XPASS on FreeBSD w/ Clang 3.4 and libc++
     def test_inferior_asserting_step(self):
         """Test that lldb functions correctly after stepping through a call to assert()."""
         self.buildDwarf()

Modified: lldb/trunk/test/lang/cpp/class_static/TestStaticVariables.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/cpp/class_static/TestStaticVariables.py?rev=206760&r1=206759&r2=206760&view=diff
==============================================================================
--- lldb/trunk/test/lang/cpp/class_static/TestStaticVariables.py (original)
+++ lldb/trunk/test/lang/cpp/class_static/TestStaticVariables.py Mon Apr 21 10:19:18 2014
@@ -38,7 +38,7 @@ class StaticVariableTestCase(TestBase):
         self.buildDsym()
         self.static_variable_python()
 
-    @expectedFailureClang(9980907)
+    @expectedFailureClang(9980907) # XPASS on FreeBSD w/ Clang 3.4 and libc++
     @python_api_test
     @dwarf_test
     def test_with_dwarf_and_python_api(self):





More information about the lldb-commits mailing list