[Lldb-commits] [lldb] 2af2bc3 - Disable ptr_ref tests under ASAN

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


Author: Adrian Prantl
Date: 2020-05-21T10:38:26-07:00
New Revision: 2af2bc33d36f97b43bbad33286d6ec81e6d7afad

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

LOG: Disable ptr_ref tests under ASAN

Added: 
    

Modified: 
    lldb/test/API/functionalities/ptr_refs/TestPtrRefs.py
    lldb/test/API/lang/objc/ptr_refs/TestPtrRefsObjC.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/functionalities/ptr_refs/TestPtrRefs.py b/lldb/test/API/functionalities/ptr_refs/TestPtrRefs.py
index e945688cbe3f..41216bbce2e5 100644
--- a/lldb/test/API/functionalities/ptr_refs/TestPtrRefs.py
+++ b/lldb/test/API/functionalities/ptr_refs/TestPtrRefs.py
@@ -13,6 +13,7 @@ class TestPtrRefs(TestBase):
 
     mydir = TestBase.compute_mydir(__file__)
 
+    @skipIfAsan # The output looks 
diff erent under ASAN.
     @skipUnlessDarwin
     @expectedFailureAll(oslist=["macosx"], debug_info=["dwarf", "gmodules"], bugnumber="llvm.org/pr45112")
     def test_ptr_refs(self):

diff  --git a/lldb/test/API/lang/objc/ptr_refs/TestPtrRefsObjC.py b/lldb/test/API/lang/objc/ptr_refs/TestPtrRefsObjC.py
index f8b6db1a7a5e..390a07c4718a 100644
--- a/lldb/test/API/lang/objc/ptr_refs/TestPtrRefsObjC.py
+++ b/lldb/test/API/lang/objc/ptr_refs/TestPtrRefsObjC.py
@@ -13,6 +13,7 @@ class TestPtrRefsObjC(TestBase):
 
     mydir = TestBase.compute_mydir(__file__)
 
+    @skipIfAsan # The output looks 
diff erent under ASAN.
     @skipUnlessDarwin
     @expectedFailureAll(oslist=["macosx"], debug_info=["dwarf", "gmodules"], bugnumber="llvm.org/pr45112")
     def test_ptr_refs(self):


        


More information about the lldb-commits mailing list