[Lldb-commits] [lldb] 25afea7 - [lldb][test] Fix typo in lldb-dap skip for Arm 32-bit

David Spickett via lldb-commits lldb-commits at lists.llvm.org
Thu Oct 30 11:34:41 PDT 2025


Author: David Spickett
Date: 2025-10-30T18:34:29Z
New Revision: 25afea74985d32999a896b24c74d6eab313cd0ea

URL: https://github.com/llvm/llvm-project/commit/25afea74985d32999a896b24c74d6eab313cd0ea
DIFF: https://github.com/llvm/llvm-project/commit/25afea74985d32999a896b24c74d6eab313cd0ea.diff

LOG: [lldb][test] Fix typo in lldb-dap skip for Arm 32-bit

Fixes 17dbd8690e36f8e514fb47f4418f78420d0fc019 (again)

Added: 
    

Modified: 
    lldb/packages/Python/lldbsuite/test/tools/lldb-dap/lldbdap_testcase.py

Removed: 
    


################################################################################
diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-dap/lldbdap_testcase.py b/lldb/packages/Python/lldbsuite/test/tools/lldb-dap/lldbdap_testcase.py
index 97c7f2d9e1b4a..405e91fc2dc36 100644
--- a/lldb/packages/Python/lldbsuite/test/tools/lldb-dap/lldbdap_testcase.py
+++ b/lldb/packages/Python/lldbsuite/test/tools/lldb-dap/lldbdap_testcase.py
@@ -16,7 +16,7 @@
 # https://github.com/llvm/llvm-project/issues/137660
 @skipIf(oslist=["windows"], archs=["aarch64"])
 # The Arm Linux bot needs stable resources before it can run these tests reliably.
- at skipif(oslist=["linux"], archs=["arm$"])
+ at skipIf(oslist=["linux"], archs=["arm$"])
 class DAPTestCaseBase(TestBase):
     # set timeout based on whether ASAN was enabled or not. Increase
     # timeout by a factor of 10 if ASAN is enabled.


        


More information about the lldb-commits mailing list