[Lldb-commits] [lldb] 59f1d0e - Fix windows buildbots after https://reviews.llvm.org/D115324

Greg Clayton via lldb-commits lldb-commits at lists.llvm.org
Thu Dec 16 16:14:36 PST 2021


Author: Greg Clayton
Date: 2021-12-16T16:13:58-08:00
New Revision: 59f1d0eed58ce0f23c3a5a324d122a99f9757228

URL: https://github.com/llvm/llvm-project/commit/59f1d0eed58ce0f23c3a5a324d122a99f9757228
DIFF: https://github.com/llvm/llvm-project/commit/59f1d0eed58ce0f23c3a5a324d122a99f9757228.diff

LOG: Fix windows buildbots after https://reviews.llvm.org/D115324

Windows has trouble deleting the executable due to permissions.

Added: 
    

Modified: 
    lldb/test/API/functionalities/module_cache/simple_exe/TestModuleCacheSimple.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/functionalities/module_cache/simple_exe/TestModuleCacheSimple.py b/lldb/test/API/functionalities/module_cache/simple_exe/TestModuleCacheSimple.py
index 7dbb70839b765..4605c3b258648 100644
--- a/lldb/test/API/functionalities/module_cache/simple_exe/TestModuleCacheSimple.py
+++ b/lldb/test/API/functionalities/module_cache/simple_exe/TestModuleCacheSimple.py
@@ -31,6 +31,7 @@ def get_module_cache_files(self, basename):
 
     # Doesn't depend on any specific debug information.
     @no_debug_info_test
+    @skipIfWindows # Windows runs into trouble deleting the executable
     def test(self):
         """
             Test module cache functionality for a simple object file.


        


More information about the lldb-commits mailing list