From 40cef80647cc21b86cbc7c969c7007f9a8f40715 Mon Sep 17 00:00:00 2001 From: Med Ismail Bennani Date: Mon, 30 Jan 2023 15:01:31 -0800 Subject: [PATCH] [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 --- .../API/functionalities/scripted_process/TestStackCoreScriptedProcess.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lldb/test/API/functionalities/scripted_process/TestStackCoreScriptedProcess.py b/lldb/test/API/functionalities/scripted_process/TestStackCoreScriptedProcess.py index 8555faf..a4ed443 100644 --- a/lldb/test/API/functionalities/scripted_process/TestStackCoreScriptedProcess.py +++ b/lldb/test/API/functionalities/scripted_process/TestStackCoreScriptedProcess.py @@ -33,6 +33,7 @@ class StackCoreScriptedProcesTestCase(TestBase): @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.""" -- 2.7.4