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. -@skipif(oslist=["linux"], archs=["arm$"]) +@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. _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
