[Lldb-commits] [lldb] 3471455 - [lldb/test] Skip TestProcessAttach: test_attach_to_process_from_different_dir_by_id on Windows

Stella Stamenova via lldb-commits lldb-commits at lists.llvm.org
Tue Jan 19 14:09:37 PST 2021


Author: Stella Stamenova
Date: 2021-01-19T14:09:09-08:00
New Revision: 347145538443347e705aaf1fb1473a5dcc5698e6

URL: https://github.com/llvm/llvm-project/commit/347145538443347e705aaf1fb1473a5dcc5698e6
DIFF: https://github.com/llvm/llvm-project/commit/347145538443347e705aaf1fb1473a5dcc5698e6.diff

LOG: [lldb/test] Skip TestProcessAttach: test_attach_to_process_from_different_dir_by_id on Windows

This test is flakey on Windows and on failure it hangs causing the test suite to fail and future builds (on the buildbot, especially) to fail because they cannot re-write the files that are currently in use

Added: 
    

Modified: 
    lldb/test/API/commands/process/attach/TestProcessAttach.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/commands/process/attach/TestProcessAttach.py b/lldb/test/API/commands/process/attach/TestProcessAttach.py
index a3a97cfcef74b..c224b9f109b32 100644
--- a/lldb/test/API/commands/process/attach/TestProcessAttach.py
+++ b/lldb/test/API/commands/process/attach/TestProcessAttach.py
@@ -44,6 +44,7 @@ def test_attach_to_process_by_id(self):
         self.assertTrue(process, PROCESS_IS_VALID)
 
     @skipIfReproducer # FIXME: Unexpected packet during (active) replay
+    @skipIfWindows # This is flakey on Windows AND when it fails, it hangs: llvm.org/pr48806
     def test_attach_to_process_from_
diff erent_dir_by_id(self):
         """Test attach by process id"""
         newdir = self.getBuildArtifact("newdir")


        


More information about the lldb-commits mailing list