Chromium Windows Perf bots timeout due to not output
Created attachment 138966 [details] Fixes the bug
Comment on attachment 138966 [details] Fixes the bug Attachment 138966 [details] did not pass qt-wk2-ews (qt): Output: http://queues.webkit.org/results/12490806
(In reply to comment #2) > (From update of attachment 138966 [details]) > Attachment 138966 [details] did not pass qt-wk2-ews (qt): > Output: http://queues.webkit.org/results/12490806 It seems like Qt EWS is broken :(
Comment on attachment 138966 [details] Fixes the bug View in context: https://bugs.webkit.org/attachment.cgi?id=138966&action=review > Tools/Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:275 > + '', ''])) nit: you can use python's automatic string concatenation here and not have to do the join, e.g.: self.assertEquals(logs, ('Running (1 of 2)\n' 'RESULT\n' 'median\n') and so forth. That style is much more common in our code for these multi-line string constants.
Committed r115466: <http://trac.webkit.org/changeset/115466>