Author: Adrian Prantl Date: 2025-11-04T12:53:23-08:00 New Revision: 2141edf506baab7e526f3a305bcdb6d6f2c772bc
URL: https://github.com/llvm/llvm-project/commit/2141edf506baab7e526f3a305bcdb6d6f2c772bc DIFF: https://github.com/llvm/llvm-project/commit/2141edf506baab7e526f3a305bcdb6d6f2c772bc.diff LOG: [lldb] Skip tests on older versions of clang Added: Modified: lldb/test/API/lang/cpp/libcxx-internals-recognizer/TestLibcxxInternalsRecognizer.py Removed: ################################################################################ diff --git a/lldb/test/API/lang/cpp/libcxx-internals-recognizer/TestLibcxxInternalsRecognizer.py b/lldb/test/API/lang/cpp/libcxx-internals-recognizer/TestLibcxxInternalsRecognizer.py index d8a729b322fe4..eeb5d1b554b01 100644 --- a/lldb/test/API/lang/cpp/libcxx-internals-recognizer/TestLibcxxInternalsRecognizer.py +++ b/lldb/test/API/lang/cpp/libcxx-internals-recognizer/TestLibcxxInternalsRecognizer.py @@ -9,7 +9,7 @@ class LibCxxInternalsRecognizerTestCase(TestBase): NO_DEBUG_INFO_TESTCASE = True @add_test_categories(["libc++"]) - @skipIf(compiler="clang", compiler_version=["<", "19.0"]) + @skipIf(compiler="clang", compiler_version=["<", "21.0"]) def test_frame_recognizer(self): """Test that implementation details of libc++ are hidden""" self.build() _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
