[Lldb-commits] [lldb] [lldb] Disable TestCancelAttach for Windows host (PR #115619)

via lldb-commits lldb-commits at lists.llvm.org
Sat Nov 9 13:21:22 PST 2024


llvmbot wrote:


<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-lldb

Author: Dmitry Vasilyev (slydiman)

<details>
<summary>Changes</summary>

See #<!-- -->115618 for details.

---
Full diff: https://github.com/llvm/llvm-project/pull/115619.diff


1 Files Affected:

- (modified) lldb/test/API/python_api/process/cancel_attach/TestCancelAttach.py (+5) 


``````````diff
diff --git a/lldb/test/API/python_api/process/cancel_attach/TestCancelAttach.py b/lldb/test/API/python_api/process/cancel_attach/TestCancelAttach.py
index 9f643d50e58fc0..3be0a85d595002 100644
--- a/lldb/test/API/python_api/process/cancel_attach/TestCancelAttach.py
+++ b/lldb/test/API/python_api/process/cancel_attach/TestCancelAttach.py
@@ -14,6 +14,11 @@
 class AttachCancelTestCase(TestBase):
     NO_DEBUG_INFO_TESTCASE = True
 
+    @skipIf(
+        remote=True,
+        hostoslist=["windows"],
+        bugnumber="https://github.com/llvm/llvm-project/issues/115618",
+    )
     def test_scripted_implementation(self):
         """Test that cancelling a stuck "attach waitfor" works."""
         # First make an empty target for the attach:

``````````

</details>


https://github.com/llvm/llvm-project/pull/115619


More information about the lldb-commits mailing list