[Lldb-commits] [lldb] Disable test on older compilers. (PR #136322)

Shubham Sandeep Rastogi via lldb-commits lldb-commits at lists.llvm.org
Fri Apr 18 09:28:05 PDT 2025


https://github.com/rastogishubham created https://github.com/llvm/llvm-project/pull/136322

None

>From f6fb1bcb7d6c05bc32a58d00f3bbdffb1c45ec94 Mon Sep 17 00:00:00 2001
From: Shubham Sandeep Rastogi <srastogi22 at apple.com>
Date: Fri, 18 Apr 2025 09:20:28 -0700
Subject: [PATCH] Disable test on older compilers.

---
 .../TestDbgInfoContentDequeFromStdModule.py                     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lldb/test/API/commands/expression/import-std-module/deque-dbg-info-content/TestDbgInfoContentDequeFromStdModule.py b/lldb/test/API/commands/expression/import-std-module/deque-dbg-info-content/TestDbgInfoContentDequeFromStdModule.py
index 24b1e00de67c7..762f06140e27a 100644
--- a/lldb/test/API/commands/expression/import-std-module/deque-dbg-info-content/TestDbgInfoContentDequeFromStdModule.py
+++ b/lldb/test/API/commands/expression/import-std-module/deque-dbg-info-content/TestDbgInfoContentDequeFromStdModule.py
@@ -10,7 +10,7 @@
 class TestDbgInfoContentDeque(TestBase):
     @add_test_categories(["libc++"])
     @skipIf(compiler=no_match("clang"))
-    @skipIf(compiler="clang", compiler_version=["<", "12.0"])
+    @skipIf(compiler="clang", compiler_version=["<", "18.0"])
     def test(self):
         self.build()
 



More information about the lldb-commits mailing list