Author: Augusto Noronha
Date: 2026-01-21T09:28:21-08:00
New Revision: ac5e1b7a965bec85979acf6fb7bd51a042954743

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

LOG: [lldb] Skip TestDAP_launch_io.py tests on asan builds (#177198)

Two out of three TestDAP_launch_io.py's test's classes have been failing
on ASAN builds ever since it was added into the repo. The ASAN failure
is not easy to debug, so skip these tests until we fix it.

Added: 
    

Modified: 
    lldb/test/API/tools/lldb-dap/launch/io/TestDAP_launch_io.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/tools/lldb-dap/launch/io/TestDAP_launch_io.py 
b/lldb/test/API/tools/lldb-dap/launch/io/TestDAP_launch_io.py
index ef189b9595eac..bbd84c07d1d4f 100644
--- a/lldb/test/API/tools/lldb-dap/launch/io/TestDAP_launch_io.py
+++ b/lldb/test/API/tools/lldb-dap/launch/io/TestDAP_launch_io.py
@@ -17,6 +17,7 @@
 
 from lldbsuite.test.decorators import (
     skip,
+    skipIfAsan,
     skipIfBuildType,
     skipIfRemote,
     skipIfWindows,
@@ -254,6 +255,7 @@ def _get_debuggee_stderr(self) -> str:
 
 
 @skipIfRemote
+@skipIfAsan
 @skipIfBuildType(["debug"])
 @skipIfWindows
 class TestDAP_launchIntegratedTerminal(DAP_launchIO):
@@ -306,6 +308,7 @@ def _get_debuggee_stderr(self) -> str:
 
 @skip  # NOTE: Currently there is no 
diff erence between internal and externalTerminal.
 @skipIfRemote
+@skipIfAsan
 @skipIfBuildType(["debug"])
 @skipIfWindows
 class TestDAP_launchExternalTerminal(DAP_launchIO):


        
_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to