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

Dmitry Vasilyev via lldb-commits lldb-commits at lists.llvm.org
Sat Nov 9 13:20:59 PST 2024


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

See #115618 for details.

>From 400bab13848936de4c5742b11e0d1d2f5e92f5ec Mon Sep 17 00:00:00 2001
From: Dmitry Vasilyev <dvassiliev at accesssoftek.com>
Date: Sun, 10 Nov 2024 01:20:07 +0400
Subject: [PATCH] [lldb] Disable TestCancelAttach for Windows host

See #115618 for details.
---
 .../API/python_api/process/cancel_attach/TestCancelAttach.py | 5 +++++
 1 file changed, 5 insertions(+)

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:



More information about the lldb-commits mailing list