From 099c989dd8041807e4611defe685143d4749e296 Mon Sep 17 00:00:00 2001 From: Felipe de Azevedo Piovezan Date: Tue, 19 Nov 2024 09:48:35 -0800 Subject: [PATCH] [lldb][test] Renable tests on asan builds The underlying issue was fixed in: https://github.com/llvm/llvm-project/pull/113968 --- .../async/stepping/step-in/task-switch/TestSwiftTaskSwitch.py | 1 - .../lang/swift/async/stepping/step_out/TestSteppingOutAsync.py | 1 - .../swift/async/stepping/step_over/TestSwiftAsyncStepOver.py | 1 - .../step_over_asynclet/TestSwiftAsyncStepOverAsyncLet.py | 1 - .../lang/swift/async_breakpoints/TestSwiftAsyncBreakpoints.py | 1 - 5 files changed, 5 deletions(-) diff --git a/lldb/test/API/lang/swift/async/stepping/step-in/task-switch/TestSwiftTaskSwitch.py b/lldb/test/API/lang/swift/async/stepping/step-in/task-switch/TestSwiftTaskSwitch.py index 981416e5bc7ca..4688f358528f1 100644 --- a/lldb/test/API/lang/swift/async/stepping/step-in/task-switch/TestSwiftTaskSwitch.py +++ b/lldb/test/API/lang/swift/async/stepping/step-in/task-switch/TestSwiftTaskSwitch.py @@ -4,7 +4,6 @@ import lldbsuite.test.lldbutil as lldbutil -@skipIfAsan # rdar://138777205 class TestCase(lldbtest.TestBase): @swiftTest @skipIf(oslist=["windows", "linux"]) diff --git a/lldb/test/API/lang/swift/async/stepping/step_out/TestSteppingOutAsync.py b/lldb/test/API/lang/swift/async/stepping/step_out/TestSteppingOutAsync.py index e1e334f0d11f6..fab30b2c1959f 100644 --- a/lldb/test/API/lang/swift/async/stepping/step_out/TestSteppingOutAsync.py +++ b/lldb/test/API/lang/swift/async/stepping/step_out/TestSteppingOutAsync.py @@ -5,7 +5,6 @@ import re -@skipIfAsan # rdar://138777205 class TestCase(lldbtest.TestBase): def check_and_get_frame_names(self, process): diff --git a/lldb/test/API/lang/swift/async/stepping/step_over/TestSwiftAsyncStepOver.py b/lldb/test/API/lang/swift/async/stepping/step_over/TestSwiftAsyncStepOver.py index 11995fced6814..81388d541327c 100644 --- a/lldb/test/API/lang/swift/async/stepping/step_over/TestSwiftAsyncStepOver.py +++ b/lldb/test/API/lang/swift/async/stepping/step_over/TestSwiftAsyncStepOver.py @@ -4,7 +4,6 @@ import lldbsuite.test.lldbutil as lldbutil -@skipIfAsan # rdar://138777205 class TestCase(lldbtest.TestBase): def check_is_in_line(self, thread, linenum): diff --git a/lldb/test/API/lang/swift/async/stepping/step_over_asynclet/TestSwiftAsyncStepOverAsyncLet.py b/lldb/test/API/lang/swift/async/stepping/step_over_asynclet/TestSwiftAsyncStepOverAsyncLet.py index b7c11e200ec87..4b821bd36f1a6 100644 --- a/lldb/test/API/lang/swift/async/stepping/step_over_asynclet/TestSwiftAsyncStepOverAsyncLet.py +++ b/lldb/test/API/lang/swift/async/stepping/step_over_asynclet/TestSwiftAsyncStepOverAsyncLet.py @@ -4,7 +4,6 @@ import lldbsuite.test.lldbutil as lldbutil -@skipIfAsan # rdar://138777205 class TestCase(lldbtest.TestBase): def check_is_in_line(self, thread, linenum): diff --git a/lldb/test/API/lang/swift/async_breakpoints/TestSwiftAsyncBreakpoints.py b/lldb/test/API/lang/swift/async_breakpoints/TestSwiftAsyncBreakpoints.py index bbbe753340ebb..4e7c2d1fcec0a 100644 --- a/lldb/test/API/lang/swift/async_breakpoints/TestSwiftAsyncBreakpoints.py +++ b/lldb/test/API/lang/swift/async_breakpoints/TestSwiftAsyncBreakpoints.py @@ -4,7 +4,6 @@ import lldbsuite.test.lldbutil as lldbutil -@skipIfAsan # rdar://138777205 class TestSwiftAsyncBreakpoints(lldbtest.TestBase): @swiftTest @skipIfWindows