Skip to content

Commit 2eb72a6

Browse files
committed
Use "skipTest" instead of return if we encounter the linker bug.
1 parent a57249d commit 2eb72a6

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lldb/test/API/macosx/branch-islands/TestBranchIslands.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,7 @@ def do_test(self):
3838
sym_addr = island_sym_ctx.symbol.addr
3939
resolved_name = sym_addr.symbol.name
4040
if resolved_name != "foo.island":
41-
return
42-
41+
self.skipTest("Encountered overlapping symbol linker bug")
4342
thread.StepInto()
4443
stop_frame = thread.frames[0]
4544
self.assertIn("foo", stop_frame.name, "Stepped into foo")

0 commit comments

Comments
 (0)