[Lldb-commits] [lldb] 8f18f36 - [lldb] Skip unreliable test under ASAN

Adrian Prantl via lldb-commits lldb-commits at lists.llvm.org
Fri Jan 17 13:27:32 PST 2025


Author: Adrian Prantl
Date: 2025-01-17T13:27:11-08:00
New Revision: 8f18f36b4906872ee0838ade2c0367c77b6f5bc0

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

LOG: [lldb] Skip unreliable test under ASAN

Added: 
    

Modified: 
    lldb/test/API/tools/lldb-dap/variables/TestDAP_variables.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/tools/lldb-dap/variables/TestDAP_variables.py b/lldb/test/API/tools/lldb-dap/variables/TestDAP_variables.py
index f4f30b6677e539..580ad38ab51c1e 100644
--- a/lldb/test/API/tools/lldb-dap/variables/TestDAP_variables.py
+++ b/lldb/test/API/tools/lldb-dap/variables/TestDAP_variables.py
@@ -672,6 +672,7 @@ def test_indexedVariables_with_raw_child_for_synthetics(self):
         self.do_test_indexedVariables(enableSyntheticChildDebugging=True)
 
     @skipIfWindows
+    @skipIfAsan # FIXME this fails with a non-asan issue on green dragon.
     def test_registers(self):
         """
         Test that registers whose byte size is the size of a pointer on


        


More information about the lldb-commits mailing list