[Lldb-commits] [lldb] 40cef80 - [lldb/test] Skip TestStackCoreScriptedProcess if Asan is enabled

Med Ismail Bennani via lldb-commits lldb-commits at lists.llvm.org
Mon Jan 30 15:02:46 PST 2023


Author: Med Ismail Bennani
Date: 2023-01-30T15:01:31-08:00
New Revision: 40cef80647cc21b86cbc7c969c7007f9a8f40715

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

LOG: [lldb/test] Skip TestStackCoreScriptedProcess if Asan is enabled

This patch skips TestStackCoreScriptedProcess because the test times out
when the Address Sanitizer is running.

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

Added: 
    

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

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/functionalities/scripted_process/TestStackCoreScriptedProcess.py b/lldb/test/API/functionalities/scripted_process/TestStackCoreScriptedProcess.py
index 8555faf672269..a4ed443d3fe85 100644
--- a/lldb/test/API/functionalities/scripted_process/TestStackCoreScriptedProcess.py
+++ b/lldb/test/API/functionalities/scripted_process/TestStackCoreScriptedProcess.py
@@ -33,6 +33,7 @@ def get_module_with_name(self, target, name):
     @skipUnlessDarwin
     @skipIfOutOfTreeDebugserver
     @skipIfRemote
+    @skipIfAsan # On ASAN builds, this test times-out (rdar://98678134)
     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