From 01aa5dfe7ae378bb16866935fd0555f090eac2ab Mon Sep 17 00:00:00 2001 From: Augusto Noronha Date: Fri, 5 Dec 2025 11:26:55 -0800 Subject: [PATCH] [lldb] Re-enable tests that were failing due to LookupInfo changes 7901f38d96 fixed the issues with lookup up functions by name using. This re-enables the tests that were disabled due to the LooupInfo issues, and which is not fixed. rdar://159531216 --- .../swift/break_by_partial_name/TestSwiftBreakByPartialName.py | 1 - .../swift/expression/equality_operators/TestEqualityOperators.py | 1 - 2 files changed, 2 deletions(-) diff --git a/lldb/test/API/lang/swift/break_by_partial_name/TestSwiftBreakByPartialName.py b/lldb/test/API/lang/swift/break_by_partial_name/TestSwiftBreakByPartialName.py index de901b6222f25..f142952c0ad33 100644 --- a/lldb/test/API/lang/swift/break_by_partial_name/TestSwiftBreakByPartialName.py +++ b/lldb/test/API/lang/swift/break_by_partial_name/TestSwiftBreakByPartialName.py @@ -18,7 +18,6 @@ from lldbsuite.test.decorators import * import lldbsuite.test.lldbutil as lldbutil -@skipIf(bugnumber = "rdar://159531198") class SwiftPartialBreakTest(TestBase): @swiftTest def test_swift_partial_break(self): diff --git a/lldb/test/API/lang/swift/expression/equality_operators/TestEqualityOperators.py b/lldb/test/API/lang/swift/expression/equality_operators/TestEqualityOperators.py index 3f77b61333f60..9c579dfb202fb 100644 --- a/lldb/test/API/lang/swift/expression/equality_operators/TestEqualityOperators.py +++ b/lldb/test/API/lang/swift/expression/equality_operators/TestEqualityOperators.py @@ -30,7 +30,6 @@ def execute_command(command): (exit_status, output) = subprocess.getstatusoutput(command) return exit_status -@skipIf(bugnumber = "rdar://159531216") class TestUnitTests(TestBase): @swiftTest @skipIf(debug_info=no_match(["dsym"]), bugnumber="This test is building a dSYM")