[Lldb-commits] [lldb] [lldb] Disable flaky TestDetachResumes.py on Windows x86_64 (PR #145301)

Dmitry Vasilyev via lldb-commits lldb-commits at lists.llvm.org
Mon Jun 23 03:00:53 PDT 2025


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

See #144891 for details.

>From 7d1bbcc0f16a67612439dc3133c361f2582ac25b Mon Sep 17 00:00:00 2001
From: Dmitry Vasilyev <dvassiliev at accesssoftek.com>
Date: Mon, 23 Jun 2025 13:58:08 +0400
Subject: [PATCH] [lldb] Disable flaky TestDetachResumes.py on Windows x86_64

See #144891 for details.
---
 .../API/commands/process/detach-resumes/TestDetachResumes.py | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/lldb/test/API/commands/process/detach-resumes/TestDetachResumes.py b/lldb/test/API/commands/process/detach-resumes/TestDetachResumes.py
index 57727294ddc3d..db730574124b6 100644
--- a/lldb/test/API/commands/process/detach-resumes/TestDetachResumes.py
+++ b/lldb/test/API/commands/process/detach-resumes/TestDetachResumes.py
@@ -12,6 +12,11 @@
 class DetachResumesTestCase(TestBase):
     NO_DEBUG_INFO_TESTCASE = True
 
+    @skipIf(
+        oslist=["windows"],
+        archs=["x86_64"],
+        bugnumber="github.com/llvm/llvm-project/issues/144891",
+    )
     def test_detach_resumes(self):
         self.build()
         exe = self.getBuildArtifact()



More information about the lldb-commits mailing list