[Lldb-commits] [lldb] 815c87f - [lldb/test] Disable TestScriptedProcess.py unless Darwin

Med Ismail Bennani via lldb-commits lldb-commits at lists.llvm.org
Fri Oct 8 06:24:23 PDT 2021


Author: Med Ismail Bennani
Date: 2021-10-08T15:19:54+02:00
New Revision: 815c87fbe20a66d28e4d09af89a39cb39270dcf0

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

LOG: [lldb/test] Disable TestScriptedProcess.py unless Darwin

This patch disables TestScriptedProcess.py on Linux and Windows while I
investigate the OS specific failure:

http://lab.llvm.org:8011/#/builders/68/builds/19793

Signed-off-by: Med Ismail Bennani <medismail.bennani at gmail.com>

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 b595d3dba32e..2341aa27e66b 100644
--- a/lldb/test/API/functionalities/scripted_process/TestScriptedProcess.py
+++ b/lldb/test/API/functionalities/scripted_process/TestScriptedProcess.py
@@ -88,6 +88,7 @@ def test_scripted_process_and_scripted_thread(self):
         for idx, reg in enumerate(registers, start=1):
             self.assertEqual(idx, int(reg.value, 16))
 
+    @skipUnlessDarwin
     def test_launch_scripted_process_stack_frames(self):
         """Test that we can launch an lldb scripted process from the command
         line, check its process ID and read string from memory."""


        


More information about the lldb-commits mailing list