Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cherry-pick: disable LLDB tests under asan that don't work under asan #1263

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions lldb/test/API/functionalities/ptr_refs/TestPtrRefs.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ class TestPtrRefs(TestBase):

mydir = TestBase.compute_mydir(__file__)

@skipIfAsan # The output looks different under ASAN.
@skipUnlessDarwin
def test_ptr_refs(self):
"""Test format string functionality."""
Expand Down
1 change: 1 addition & 0 deletions lldb/test/API/lang/objc/ptr_refs/TestPtrRefsObjC.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ class TestPtrRefsObjC(TestBase):

mydir = TestBase.compute_mydir(__file__)

@skipIfAsan # The output looks different under ASAN.
@skipUnlessDarwin
def test_ptr_refs(self):
"""Test the ptr_refs tool on Darwin with Objective-C"""
Expand Down
1 change: 1 addition & 0 deletions lldb/test/API/python_api/thread/TestThreadAPI.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 different under ASAN.
@add_test_categories(['pyapi'])
@expectedFailureAll(oslist=['freebsd'], bugnumber='llvm.org/pr20476')
@expectedFailureAll(oslist=["windows"])
Expand Down