[Lldb-commits] [lldb] ea82853 - [lldb][test] Skip ScriptedProcess missing methods test on Windows

David Spickett via lldb-commits lldb-commits at lists.llvm.org
Wed Nov 8 07:23:40 PST 2023


Author: David Spickett
Date: 2023-11-08T15:23:03Z
New Revision: ea82853499cc8780cfc86a6913d851f05d527188

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

LOG: [lldb][test] Skip ScriptedProcess missing methods test on Windows

No dylib on Windows, so the test fails to build.

Added: 
    

Modified: 
    lldb/test/API/functionalities/scripted_process/TestScriptedProcess.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/functionalities/scripted_process/TestScriptedProcess.py b/lldb/test/API/functionalities/scripted_process/TestScriptedProcess.py
index 8c6b9c74bde4703..837ceea22ad1647 100644
--- a/lldb/test/API/functionalities/scripted_process/TestScriptedProcess.py
+++ b/lldb/test/API/functionalities/scripted_process/TestScriptedProcess.py
@@ -60,6 +60,8 @@ def move_blueprint_to_dsym(self, blueprint_name):
         )
         shutil.copy(blueprint_origin_path, blueprint_destination_path)
 
+    # No dylib on Windows.
+    @skipIfWindows
     def test_missing_methods_scripted_register_context(self):
         """Test that we only instanciate scripted processes if they implement
         all the required abstract methods."""


        


More information about the lldb-commits mailing list