Skip to content

Commit 59d5886

Browse files
committed
[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 15a6df5 ).
1 parent 610fea6 commit 59d5886

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def test(self):
5858
@no_debug_info_test
5959
@skipIfDarwin
6060
@skipIf(compiler=no_match("clang"))
61-
@skipIf(compiler_version=["<", "7.0"])
61+
@skipIf(compiler_version=["<", "8.0"])
6262
@expectedFailureAll(oslist=["windows"])
6363
def test_debug_names(self):
6464
"""Test that we are able to find complete types when using DWARF v5

0 commit comments

Comments
 (0)