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

via lldb-commits lldb-commits at lists.llvm.org
Mon Jun 23 04:25:10 PDT 2025


Author: Dmitry Vasilyev
Date: 2025-06-23T15:25:08+04:00
New Revision: 6d8d4cf9a46b3729732736ffe288f6b722d85121

URL: https://github.com/llvm/llvm-project/commit/6d8d4cf9a46b3729732736ffe288f6b722d85121
DIFF: https://github.com/llvm/llvm-project/commit/6d8d4cf9a46b3729732736ffe288f6b722d85121.diff

LOG: [lldb] Disable flaky TestDetachResumes.py on Windows x86_64 (#145301)

See #144891 for details.

Added: 
    

Modified: 
    lldb/test/API/commands/process/detach-resumes/TestDetachResumes.py

Removed: 
    


################################################################################
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