[lldb][test] Skip tail_call_frames tests on older Clang versions

These have been un-XFAILed in
`ebe6eba62580592af7065a36b22d929c15291e9a`, but require following Clang
fix: https://github.com/llvm/llvm-project/pull/150022. So skip older
compilers.
This commit is contained in:
Michael Buch
2025-08-02 23:59:20 +01:00
parent 7ebbbd885f
commit 779868de69
2 changed files with 2 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ from lldbsuite.test import lldbutil
class TestCrossDSOTailCalls(TestBase):
@skipIf(compiler="clang", compiler_version=["<", "10.0"])
@skipIf(compiler="clang", compiler_version=["<", "22.0"])
@skipIf(dwarf_version=["<", "4"])
@expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr26265")
def test_cross_dso_tail_calls(self):

View File

@@ -8,7 +8,7 @@ from lldbsuite.test import lldbutil
class TestCrossObjectTailCalls(TestBase):
@skipIf(compiler="clang", compiler_version=["<", "10.0"])
@skipIf(compiler="clang", compiler_version=["<", "22.0"])
@skipIf(dwarf_version=["<", "4"])
@expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr26265")
def test_cross_object_tail_calls(self):