[Lldb-commits] [lldb] 60dff35 - Move decorator to the correct function.

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


Author: Adrian Prantl
Date: 2020-05-21T10:42:26-07:00
New Revision: 60dff35fd435e5c5b434091019a78183260552be

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

LOG: Move decorator to the correct function.

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 de2dbbc24513..144f062846ae 100644
--- a/lldb/test/API/python_api/thread/TestThreadAPI.py
+++ b/lldb/test/API/python_api/thread/TestThreadAPI.py
@@ -37,6 +37,7 @@ def test_run_to_address(self):
         self.setTearDownCleanup(dictionary=d)
         self.run_to_address(self.exe_name)
 
+    @skipIfAsan # The output looks 
diff erent under ASAN.
     @add_test_categories(['pyapi'])
     @expectedFailureAll(oslist=["linux"], archs=['arm'], bugnumber="llvm.org/pr45892")
     @expectedFailureAll(oslist=['freebsd'], bugnumber='llvm.org/pr20476')
@@ -138,7 +139,6 @@ 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