Skip to content

Commit fdc8ba6

Browse files
authored
Merge pull request swiftlang#95 from eeckstein/workaround-for-linux-problem
disable the linux_load_commands test for liblldb.so until rdar://87078244 is fixed
2 parents 3670ed0 + 50b0b0f commit fdc8ba6

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

test-snapshot-binaries/linux_load_commands.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,13 @@ def main():
154154

155155
libraries = get_libraries(args.package_path)
156156
for l in libraries:
157+
158+
# When linking the swiftCompilerModules to lldb, the text segment
159+
# gets RWE for some reason.
160+
# TODO: remove this workaround once rdar://87078244 is fixed
161+
if "liblldb.so" in l:
162+
continue
163+
157164
process_library(args, l)
158165
sys.exit(0)
159166

0 commit comments

Comments
 (0)