From 3b284d470465ad69a91dd46cad38034eec2f0a45 Mon Sep 17 00:00:00 2001 From: Michael Buch Date: Sat, 2 Aug 2025 23:59:20 +0100 Subject: [PATCH] [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. (cherry picked from commit 779868de6975f6fd0ea17bb9a8e929037d3752d7) --- .../tail_call_frames/cross_dso/TestCrossDSOTailCalls.py | 2 +- .../tail_call_frames/cross_object/TestCrossObjectTailCalls.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lldb/test/API/functionalities/tail_call_frames/cross_dso/TestCrossDSOTailCalls.py b/lldb/test/API/functionalities/tail_call_frames/cross_dso/TestCrossDSOTailCalls.py index 0ca2f9e52c582..41cb185051829 100644 --- a/lldb/test/API/functionalities/tail_call_frames/cross_dso/TestCrossDSOTailCalls.py +++ b/lldb/test/API/functionalities/tail_call_frames/cross_dso/TestCrossDSOTailCalls.py @@ -8,7 +8,7 @@ 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): diff --git a/lldb/test/API/functionalities/tail_call_frames/cross_object/TestCrossObjectTailCalls.py b/lldb/test/API/functionalities/tail_call_frames/cross_object/TestCrossObjectTailCalls.py index b5de75e30e495..b652fb895210b 100644 --- a/lldb/test/API/functionalities/tail_call_frames/cross_object/TestCrossObjectTailCalls.py +++ b/lldb/test/API/functionalities/tail_call_frames/cross_object/TestCrossObjectTailCalls.py @@ -8,7 +8,7 @@ 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):