Skip to content

Commit 779868d

Browse files
committed
[lldb][test] Skip tail_call_frames tests on older Clang versions
These have been un-XFAILed in `ebe6eba62580592af7065a36b22d929c15291e9a`, but require following Clang fix: #150022. So skip older compilers.
1 parent 7ebbbd8 commit 779868d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lldb/test/API/functionalities/tail_call_frames/cross_dso/TestCrossDSOTailCalls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99

1010
class TestCrossDSOTailCalls(TestBase):
11-
@skipIf(compiler="clang", compiler_version=["<", "10.0"])
11+
@skipIf(compiler="clang", compiler_version=["<", "22.0"])
1212
@skipIf(dwarf_version=["<", "4"])
1313
@expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr26265")
1414
def test_cross_dso_tail_calls(self):

lldb/test/API/functionalities/tail_call_frames/cross_object/TestCrossObjectTailCalls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99

1010
class TestCrossObjectTailCalls(TestBase):
11-
@skipIf(compiler="clang", compiler_version=["<", "10.0"])
11+
@skipIf(compiler="clang", compiler_version=["<", "22.0"])
1212
@skipIf(dwarf_version=["<", "4"])
1313
@expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr26265")
1414
def test_cross_object_tail_calls(self):

0 commit comments

Comments
 (0)