[Lldb-commits] [lldb] [lldb-dap] Disable TestDAP_optimized under ASAN (PR #111063)
Augusto Noronha via lldb-commits
lldb-commits at lists.llvm.org
Thu Oct 3 13:46:37 PDT 2024
https://github.com/augusto2112 updated https://github.com/llvm/llvm-project/pull/111063
>From 9f64a452745b070b610e583436f074b3f9a24f4f Mon Sep 17 00:00:00 2001
From: Augusto Noronha <anoronha at apple.com>
Date: Thu, 3 Oct 2024 13:43:06 -0700
Subject: [PATCH] [lldb-dap] Disable TestDAP_optimized under ASAN
This test is failing on green dragon and I couldn't figure out why,
disabling it for now under ASAN to get the bot green.
Opened an issue
(https://github.com/llvm/llvm-project/issues/111061) to track the
problem.
---
lldb/test/API/tools/lldb-dap/optimized/TestDAP_optimized.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/lldb/test/API/tools/lldb-dap/optimized/TestDAP_optimized.py b/lldb/test/API/tools/lldb-dap/optimized/TestDAP_optimized.py
index 42a95de309a08b..ae144ebdca46bd 100644
--- a/lldb/test/API/tools/lldb-dap/optimized/TestDAP_optimized.py
+++ b/lldb/test/API/tools/lldb-dap/optimized/TestDAP_optimized.py
@@ -28,6 +28,7 @@ def test_stack_frame_name(self):
parent_frame = self.dap_server.get_stackFrame(frameIndex=1)
self.assertTrue(parent_frame["name"].endswith(" [opt]"))
+ @skipIfAsan # On ASAN builds this test intermittently fails https://github.com/llvm/llvm-project/issues/111061
@skipIfWindows
def test_optimized_variable(self):
"""Test optimized variable value contains error."""
More information about the lldb-commits
mailing list