[Lldb-commits] [lldb] 4472e93 - [LLDB] Skip test with older versions of clang (#200456)

via lldb-commits lldb-commits at lists.llvm.org
Fri May 29 09:50:56 PDT 2026


Author: Adrian Prantl
Date: 2026-05-29T09:50:50-07:00
New Revision: 4472e935678ae8aba762b2464867f9e3fe81ca15

URL: https://github.com/llvm/llvm-project/commit/4472e935678ae8aba762b2464867f9e3fe81ca15
DIFF: https://github.com/llvm/llvm-project/commit/4472e935678ae8aba762b2464867f9e3fe81ca15.diff

LOG: [LLDB] Skip test with older versions of clang (#200456)

Added: 
    

Modified: 
    lldb/test/API/lang/objc/modules-auto-import/TestModulesAutoImport.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/lang/objc/modules-auto-import/TestModulesAutoImport.py b/lldb/test/API/lang/objc/modules-auto-import/TestModulesAutoImport.py
index bc75e7b7bc02f..93b7f528f5c62 100644
--- a/lldb/test/API/lang/objc/modules-auto-import/TestModulesAutoImport.py
+++ b/lldb/test/API/lang/objc/modules-auto-import/TestModulesAutoImport.py
@@ -11,7 +11,7 @@ class ObjCModulesAutoImportTestCase(TestBase):
     SHARED_BUILD_TESTCASE = False
 
     @skipIf(macos_version=["<", "10.12"])
-    @skipIf(compiler="clang", compiler_version=["<", "19.0"])
+    @skipIf(compiler="clang", compiler_version=["<", "20.0"])
     def test_expr(self):
         self.build()
         lldbutil.run_to_source_breakpoint(
@@ -22,7 +22,7 @@ def test_expr(self):
         self.expect_expr("getpid()", result_type="pid_t")
 
     @skipIf(macos_version=["<", "10.12"])
-    @skipIf(compiler="clang", compiler_version=["<", "19.0"])
+    @skipIf(compiler="clang", compiler_version=["<", "20.0"])
     def test_expr_no_sysroot(self):
         self.build(dictionary={"TEST_EXTRA_FLAGS": f"-fno-debug-record-sysroot"})
         lldbutil.run_to_source_breakpoint(


        


More information about the lldb-commits mailing list