[Lldb-commits] [lldb] 48c36a1 - [lldb/test] Disable test_launch_scripted_process_stack_frames on x86_64

Med Ismail Bennani via lldb-commits lldb-commits at lists.llvm.org
Thu Jan 27 09:42:16 PST 2022


Author: Med Ismail Bennani
Date: 2022-01-27T18:42:08+01:00
New Revision: 48c36a15a363e32757c51aa69de7adf88c143c37

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

LOG: [lldb/test] Disable test_launch_scripted_process_stack_frames on x86_64

There seems to be an issue on x86_64 when launching a ScriptdProcess.
This disables temporarely the test that causes the bot to timeout until
I finish investigating the issue.

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 0c215f082c5d3..2e80f74622fb4 100644
--- a/lldb/test/API/functionalities/scripted_process/TestScriptedProcess.py
+++ b/lldb/test/API/functionalities/scripted_process/TestScriptedProcess.py
@@ -142,6 +142,7 @@ def create_stack_skinny_corefile(self, file):
         self.assertTrue(self.dbg.DeleteTarget(target), "Couldn't delete target")
 
     @skipUnlessDarwin
+    @skipIf(archs=no_match(['arm64', 'arm64e']))
     @skipIfOutOfTreeDebugserver
     def test_launch_scripted_process_stack_frames(self):
         """Test that we can launch an lldb scripted process from the command


        


More information about the lldb-commits mailing list