diff options
| author | Adrian Prantl <aprantl@apple.com> | 2020-05-21 10:42:26 -0700 |
|---|---|---|
| committer | Adrian Prantl <aprantl@apple.com> | 2020-05-21 10:42:26 -0700 |
| commit | 60dff35fd435e5c5b434091019a78183260552be (patch) | |
| tree | 3c3e848f1f12b667da444902a0359e1c2347a924 /lldb/test/API/python_api | |
| parent | a62a5200445abddd5a559a4dee2db0cc545eab5b (diff) | |
| download | llvm-60dff35fd435e5c5b434091019a78183260552be.zip llvm-60dff35fd435e5c5b434091019a78183260552be.tar.gz llvm-60dff35fd435e5c5b434091019a78183260552be.tar.bz2 | |
Move decorator to the correct function.
Diffstat (limited to 'lldb/test/API/python_api')
| -rw-r--r-- | lldb/test/API/python_api/thread/TestThreadAPI.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/API/python_api/thread/TestThreadAPI.py b/lldb/test/API/python_api/thread/TestThreadAPI.py index de2dbbc..144f062 100644 --- a/lldb/test/API/python_api/thread/TestThreadAPI.py +++ b/lldb/test/API/python_api/thread/TestThreadAPI.py @@ -37,6 +37,7 @@ class ThreadAPITestCase(TestBase): self.setTearDownCleanup(dictionary=d) self.run_to_address(self.exe_name) + @skipIfAsan # The output looks different 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 @@ 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) |
