[Lldb-commits] [lldb] r254006 - Temporarily add expectedFailureFreeBSD to tests that fail to detect Clang on FreeBSD

Ed Maste via lldb-commits lldb-commits at lists.llvm.org
Tue Nov 24 10:59:52 PST 2015


Author: emaste
Date: Tue Nov 24 12:59:51 2015
New Revision: 254006

URL: http://llvm.org/viewvc/llvm-project?rev=254006&view=rev
Log:
Temporarily add expectedFailureFreeBSD to tests that fail to detect Clang on FreeBSD

On FreeBSD we may get Clang via CC=cc or CC=/usr/bin/cc.

llvm.org/pr25626

Modified:
    lldb/trunk/packages/Python/lldbsuite/test/lang/c/typedef/Testtypedef.py
    lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/TestCppIncompleteTypes.py

Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/c/typedef/Testtypedef.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/c/typedef/Testtypedef.py?rev=254006&r1=254005&r2=254006&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/c/typedef/Testtypedef.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/c/typedef/Testtypedef.py Tue Nov 24 12:59:51 2015
@@ -23,6 +23,7 @@ class TypedefTestCase(TestBase):
 
     @dwarf_test
     @expectedFailureClang("llvm.org/pr19238")
+    @expectedFailureFreeBSD("llvm.org/pr25626 expectedFailureClang fails on FreeBSD")
     def test_with_dwarf(self):
         """Test 'image lookup -t a' and check for correct display at different scopes."""
         self.buildDwarf()

Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/TestCppIncompleteTypes.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/TestCppIncompleteTypes.py?rev=254006&r1=254005&r2=254006&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/TestCppIncompleteTypes.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/TestCppIncompleteTypes.py Tue Nov 24 12:59:51 2015
@@ -6,6 +6,7 @@ class TestCppIncompleteTypes(TestBase):
 
     mydir = TestBase.compute_mydir(__file__)
 
+    @expectedFailureFreeBSD("llvm.org/pr25626 test executable not built correctly on FreeBSD")
     @skipIfGcc
     def test_limit_debug_info(self):
         self.build()




More information about the lldb-commits mailing list