Skip to content

Commit 99b428c

Browse files
[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
1 parent 88636f0 commit 99b428c

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

lldb/test/API/lang/swift/step_through_allocating_init/TestStepThroughAllocatingInit.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@ def do_test(self, use_api):
3232
exe_name = "a.out"
3333
exe = self.getBuildArtifact(exe_name)
3434

35+
self.runCmd(
36+
"settings set target.process.thread.step-avoid-libraries libswiftCore.dylib"
37+
)
38+
3539
target, process, thread, breakpoint = lldbutil.run_to_source_breakpoint(self,
3640
'Break here to step into init', self.main_source_spec)
3741

0 commit comments

Comments
 (0)