From 99b428c45f317f0ec5b30ec7fc1c4b92f6952cc9 Mon Sep 17 00:00:00 2001 From: Felipe de Azevedo Piovezan Date: Fri, 5 Sep 2025 12:33:49 -0700 Subject: [PATCH] [lldb] Ignore swiftCore library for TestStepThroughAllocatingInit This is causing the test to fail on CI, as we build the standard library with debug symbols. This does not yet re-enable the test because of a separate issue with rebranch. rdar://158610467 --- .../TestStepThroughAllocatingInit.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lldb/test/API/lang/swift/step_through_allocating_init/TestStepThroughAllocatingInit.py b/lldb/test/API/lang/swift/step_through_allocating_init/TestStepThroughAllocatingInit.py index bfa7cf6ed6937..0a97a07585549 100644 --- a/lldb/test/API/lang/swift/step_through_allocating_init/TestStepThroughAllocatingInit.py +++ b/lldb/test/API/lang/swift/step_through_allocating_init/TestStepThroughAllocatingInit.py @@ -32,6 +32,10 @@ def do_test(self, use_api): exe_name = "a.out" exe = self.getBuildArtifact(exe_name) + self.runCmd( + "settings set target.process.thread.step-avoid-libraries libswiftCore.dylib" + ) + target, process, thread, breakpoint = lldbutil.run_to_source_breakpoint(self, 'Break here to step into init', self.main_source_spec)