Auto merge of #9425 - connorimes:characterize-use-output-png, r=larsbergstrom

Output to png file since exit flag doesn't work

<!-- Reviewable:start -->
[<img src="https://reviewable.io/review_button.svg" height="40" alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/9425)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2016-01-27 20:51:50 +05:30
commit e9769da498

View file

@ -65,7 +65,7 @@ def get_command(build_target, layout_thread_count, renderer, page, profile):
"""Get the command to execute.
"""
return path.join(TOP_DIR, "target", build_target, "servo") + \
" -p %d -x -y %d %s -Z profile-script-events '%s'" % \
" -p %d -o output.png -y %d %s -Z profile-script-events '%s'" % \
(profile, layout_thread_count, renderer, page)