Skip to content

Commit

Permalink
Put each unexpected dynamic symbols on its own line
Browse files Browse the repository at this point in the history
  • Loading branch information
askeing committed Apr 25, 2016
1 parent 75ae1c0 commit f5d87a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions etc/ci/check_dynamic_symbols.py
Expand Up @@ -29,6 +29,6 @@
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)

0 comments on commit f5d87a3

Please sign in to comment.