mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
Put each unexpected dynamic symbols on its own line
This commit is contained in:
parent
75ae1c033f
commit
f5d87a37ec
1 changed files with 2 additions and 2 deletions
|
@ -29,6 +29,6 @@ for line in objdump_output:
|
|||
difference = actual_symbols - allowed_symbols
|
||||
|
||||
if len(difference) > 0:
|
||||
human_readable_difference = ", ".join(str(s) for s in difference)
|
||||
print("Unexpected dynamic symbols in binary: {0}".format(human_readable_difference))
|
||||
human_readable_difference = "\n".join(str(s) for s in difference)
|
||||
print("Unexpected dynamic symbols in binary:\n{0}".format(human_readable_difference))
|
||||
sys.exit(-1)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue