aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/API/python_api
diff options
context:
space:
mode:
authorAdrian Prantl <aprantl@apple.com>2020-05-21 10:41:27 -0700
committerAdrian Prantl <aprantl@apple.com>2020-05-21 10:41:27 -0700
commita62a5200445abddd5a559a4dee2db0cc545eab5b (patch)
treea6dbbe4393447e8eb033c61c699aa89e23bf763c /lldb/test/API/python_api
parent2af2bc33d36f97b43bbad33286d6ec81e6d7afad (diff)
downloadllvm-a62a5200445abddd5a559a4dee2db0cc545eab5b.zip
llvm-a62a5200445abddd5a559a4dee2db0cc545eab5b.tar.gz
llvm-a62a5200445abddd5a559a4dee2db0cc545eab5b.tar.bz2
Disable malloc stepping test under ASAN. The output is different and I'm not sure how stable it is.
Diffstat (limited to 'lldb/test/API/python_api')
-rw-r--r--lldb/test/API/python_api/thread/TestThreadAPI.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/test/API/python_api/thread/TestThreadAPI.py b/lldb/test/API/python_api/thread/TestThreadAPI.py
index 6e4aedd..de2dbbc 100644
--- a/lldb/test/API/python_api/thread/TestThreadAPI.py
+++ b/lldb/test/API/python_api/thread/TestThreadAPI.py
@@ -138,6 +138,7 @@ class ThreadAPITestCase(TestBase):
# 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 different 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)