Author: Raphael Isemann
Date: 2021-06-16T14:07:03+02:00
New Revision: 59d58863bc0ea72a396aa9b08a7a5cb3f29e75b6

URL: 
https://github.com/llvm/llvm-project/commit/59d58863bc0ea72a396aa9b08a7a5cb3f29e75b6
DIFF: 
https://github.com/llvm/llvm-project/commit/59d58863bc0ea72a396aa9b08a7a5cb3f29e75b6.diff

LOG: [lldb] Require Clang 8 for gpubnames test

This test is using -gpubnames which is only available since Clang 8. The
original Clang 7 requirement was based on the availability of
-accel-tables=Dwarf (which the test initially used before being changed to
-gpubnames in commit 15a6df52efaa7 ).

Added: 
    

Modified: 
    lldb/test/API/lang/c/forward/TestForwardDeclaration.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/lang/c/forward/TestForwardDeclaration.py 
b/lldb/test/API/lang/c/forward/TestForwardDeclaration.py
index f8f8a46d8a299..3dc3acee34b9a 100644
--- a/lldb/test/API/lang/c/forward/TestForwardDeclaration.py
+++ b/lldb/test/API/lang/c/forward/TestForwardDeclaration.py
@@ -58,7 +58,7 @@ def test(self):
     @no_debug_info_test
     @skipIfDarwin
     @skipIf(compiler=no_match("clang"))
-    @skipIf(compiler_version=["<", "7.0"])
+    @skipIf(compiler_version=["<", "8.0"])
     @expectedFailureAll(oslist=["windows"])
     def test_debug_names(self):
         """Test that we are able to find complete types when using DWARF v5


        
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to