[Lldb-commits] [lldb] 134a94a - [lldb][test] TestCppTemplateArguments.py: skip on older compilers
Michael Buch via lldb-commits
lldb-commits at lists.llvm.org
Fri Feb 14 02:27:05 PST 2025
Author: Michael Buch
Date: 2025-02-14T10:26:47Z
New Revision: 134a94ae0b6cb8dccf1114fb2eefb172e9697905
URL: https://github.com/llvm/llvm-project/commit/134a94ae0b6cb8dccf1114fb2eefb172e9697905
DIFF: https://github.com/llvm/llvm-project/commit/134a94ae0b6cb8dccf1114fb2eefb172e9697905.diff
LOG: [lldb][test] TestCppTemplateArguments.py: skip on older compilers
This test needs to be compiled with compilers that support floating point NTTP.
Added:
Modified:
lldb/test/API/lang/cpp/template-arguments/TestCppTemplateArguments.py
Removed:
################################################################################
diff --git a/lldb/test/API/lang/cpp/template-arguments/TestCppTemplateArguments.py b/lldb/test/API/lang/cpp/template-arguments/TestCppTemplateArguments.py
index c276aae449920..db5388b8bcc6d 100644
--- a/lldb/test/API/lang/cpp/template-arguments/TestCppTemplateArguments.py
+++ b/lldb/test/API/lang/cpp/template-arguments/TestCppTemplateArguments.py
@@ -6,6 +6,7 @@
class TestCase(TestBase):
@no_debug_info_test
+ @skipIf(compiler="clang", compiler_version=["<", "20.0"])
def test(self):
self.build()
target = self.dbg.CreateTarget(self.getBuildArtifact("a.out"))
More information about the lldb-commits
mailing list