[Lldb-commits] [lldb] fcd2d85 - [lldb] Skip test_launch_scripted_process_stack_frames with ASan

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Wed Dec 1 21:35:53 PST 2021


Author: Jonas Devlieghere
Date: 2021-12-01T21:35:00-08:00
New Revision: fcd2d85cc9438ffe8e4a4948898077dfc253fe9d

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

LOG: [lldb] Skip test_launch_scripted_process_stack_frames with ASan

This test is failing on the sanitized bot because of a
heap-use-after-free. Disabling the test to turn the bot
green again.

rdar://85954489.

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 342068328310a..9df72cdda1901 100644
--- a/lldb/test/API/functionalities/scripted_process/TestScriptedProcess.py
+++ b/lldb/test/API/functionalities/scripted_process/TestScriptedProcess.py
@@ -104,6 +104,7 @@ def create_stack_skinny_corefile(self, file):
     @skipUnlessDarwin
     @skipIfOutOfTreeDebugserver
     @skipIf(archs=no_match(['x86_64']))
+    @skipIfAsan # rdar://85954489
     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