llvmbot wrote:

<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-lldb

Author: Augusto Noronha (augusto2112)

<details>
<summary>Changes</summary>

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.

---
Full diff: https://github.com/llvm/llvm-project/pull/177198.diff


1 Files Affected:

- (modified) lldb/test/API/tools/lldb-dap/launch/io/TestDAP_launch_io.py (+3) 


``````````diff
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):

``````````

</details>


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

Reply via email to