[Lldb-commits] [lldb] a62a520 - Disable malloc stepping test under ASAN. The output is different and I'm not sure how stable it is.

Adrian Prantl via lldb-commits lldb-commits at lists.llvm.org
Thu May 21 10:41:39 PDT 2020


Author: Adrian Prantl
Date: 2020-05-21T10:41:27-07:00
New Revision: a62a5200445abddd5a559a4dee2db0cc545eab5b

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

LOG: Disable malloc stepping test under ASAN. The output is different and I'm not sure how stable it is.

Added: 
    

Modified: 
    lldb/test/API/python_api/thread/TestThreadAPI.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/python_api/thread/TestThreadAPI.py b/lldb/test/API/python_api/thread/TestThreadAPI.py
index 6e4aeddc82c9..de2dbbc24513 100644
--- a/lldb/test/API/python_api/thread/TestThreadAPI.py
+++ b/lldb/test/API/python_api/thread/TestThreadAPI.py
@@ -138,6 +138,7 @@ def get_stop_description(self):
         # Test that we can pass in a much larger size and still get the right output.
         self.assertEqual("breakpoint 1.1", thread.GetStopDescription(len('breakpoint 1.1') + 100))
 
+    @skipIfAsan # The output looks 
diff erent under ASAN.
     def step_out_of_malloc_into_function_b(self, exe_name):
         """Test Python SBThread.StepOut() API to step out of a malloc call where the call site is at function b()."""
         exe = self.getBuildArtifact(exe_name)


        


More information about the lldb-commits mailing list