https://github.com/augusto2112 created 
https://github.com/llvm/llvm-project/pull/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.

>From 58192e52050169032853e0fb0e790a4e46b20755 Mon Sep 17 00:00:00 2001
From: Augusto Noronha <[email protected]>
Date: Wed, 21 Jan 2026 08:41:51 -0800
Subject: [PATCH] [lldb] Skip TestDAP_launch_io.py tests on asan builds

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.
---
 lldb/test/API/tools/lldb-dap/launch/io/TestDAP_launch_io.py | 3 +++
 1 file changed, 3 insertions(+)

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 difference 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