Author: Charles Zablit Date: 2026-06-24T17:14:10+01:00 New Revision: a7f5b5550655a2af0fc1fe9da579e5706713195d
URL: https://github.com/llvm/llvm-project/commit/a7f5b5550655a2af0fc1fe9da579e5706713195d DIFF: https://github.com/llvm/llvm-project/commit/a7f5b5550655a2af0fc1fe9da579e5706713195d.diff LOG: [lldb-dap][test] Re-enable test_by_name_waitFor on Windows (#205570) `test_by_name_waitFor` passes with `LLDB_USE_LLDB_SERVER=1`. `test_by_partial_name_waitFor` hangs on exit. Skip if for now. rdar://180515488 Added: Modified: lldb/test/API/tools/lldb-dap/attach/TestDAP_attach.py Removed: ################################################################################ diff --git a/lldb/test/API/tools/lldb-dap/attach/TestDAP_attach.py b/lldb/test/API/tools/lldb-dap/attach/TestDAP_attach.py index 60a8758591f85..94e7fd63ccad8 100644 --- a/lldb/test/API/tools/lldb-dap/attach/TestDAP_attach.py +++ b/lldb/test/API/tools/lldb-dap/attach/TestDAP_attach.py @@ -73,7 +73,7 @@ def test_by_name(self): self.attach(program=program) self.continue_and_verify_pid() - @expectedFailureWindows + @expectedFailureWindowsAndNoLLDBServer def test_by_name_waitFor(self): """ Tests waiting for, and attaching to a process by process name that @@ -98,6 +98,7 @@ def test_by_name_waitFor(self): self.spawn_thread.join(timeout=10) @expectedFailureWindows + @skipIfWindowsAndLLDBServer def test_by_partial_name_waitFor(self): """ Tests waiting for and attaching to a process by partial process name _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
