[Lldb-commits] [lldb] 0fca1e4 - [lldb][lldb-dap][test] Correct skip in TestDAP_launch
David Spickett via lldb-commits
lldb-commits at lists.llvm.org
Fri Aug 15 05:29:33 PDT 2025
Author: David Spickett
Date: 2025-08-15T12:29:26Z
New Revision: 0fca1e4e06445c98352fb3a034bf197bc7990f36
URL: https://github.com/llvm/llvm-project/commit/0fca1e4e06445c98352fb3a034bf197bc7990f36
DIFF: https://github.com/llvm/llvm-project/commit/0fca1e4e06445c98352fb3a034bf197bc7990f36.diff
LOG: [lldb][lldb-dap][test] Correct skip in TestDAP_launch
Fixes 4f65345ab5f2787a4704efb5828657c50be6d65a
Yet again I forgot it's skip[I]f.
Added:
Modified:
lldb/test/API/tools/lldb-dap/launch/TestDAP_launch.py
Removed:
################################################################################
diff --git a/lldb/test/API/tools/lldb-dap/launch/TestDAP_launch.py b/lldb/test/API/tools/lldb-dap/launch/TestDAP_launch.py
index d53ea9722e6f8..f669523179add 100644
--- a/lldb/test/API/tools/lldb-dap/launch/TestDAP_launch.py
+++ b/lldb/test/API/tools/lldb-dap/launch/TestDAP_launch.py
@@ -432,7 +432,7 @@ def test_commands(self):
self.verify_commands("terminateCommands", output, terminateCommands)
# Flakey on 32-bit Arm Linux.
- @skipif(oslist=["linux"], archs=["arm$"])
+ @skipIf(oslist=["linux"], archs=["arm$"])
def test_extra_launch_commands(self):
"""
Tests the "launchCommands" with extra launching settings
More information about the lldb-commits
mailing list