mirror of
https://github.com/intel/llvm.git
synced 2026-01-22 23:49:22 +08:00
[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:
@@ -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):
|
||||
|
||||
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user