run-perf-tests throws an exception when the output json is malformed
Created attachment 155843 [details] Patch
Comment on attachment 155843 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=155843&action=review > Tools/Scripts/webkitpy/performance_tests/perftestsrunner.py:56 > + _EXIT_CODE_BAD_PREPARATION = -5 Nit: the leading underscore makes these look like they're supposed to be private, but you return them from run(); should they be public (and have no leading underscore)?
(In reply to comment #2) > (From update of attachment 155843 [details]) > View in context: https://bugs.webkit.org/attachment.cgi?id=155843&action=review > > > Tools/Scripts/webkitpy/performance_tests/perftestsrunner.py:56 > > + _EXIT_CODE_BAD_PREPARATION = -5 > > Nit: the leading underscore makes these look like they're supposed to be private, but you return them from run(); should they be public (and have no leading underscore)? Yeah, I should get rid of underscores. Will do. Thanks.
Committed r124349: <http://trac.webkit.org/changeset/124349>