Bug 92575 - run-perf-tests should generate a results page
Summary: run-perf-tests should generate a results page
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: Tools / Tests (show other bugs)
Version: 528+ (Nightly build)
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Ryosuke Niwa
URL:
Keywords:
Depends on: 77037
Blocks:
  Show dependency treegraph
 
Reported: 2012-07-28 00:59 PDT by Ryosuke Niwa
Modified: 2012-07-29 15:03 PDT (History)
10 users (show)

See Also:


Attachments
Screenshot of current results.html (deleted)
2012-07-28 01:38 PDT, Ryosuke Niwa
no flags Details
Patch (58.92 KB, patch)
2012-07-28 01:56 PDT, Ryosuke Niwa
no flags Details | Formatted Diff | Diff
Sample results page (deleted)
2012-07-28 02:02 PDT, Ryosuke Niwa
no flags Details
Use the same filename as the output JSON (58.89 KB, patch)
2012-07-28 02:23 PDT, Ryosuke Niwa
no flags Details | Formatted Diff | Diff
Removed tabs (58.91 KB, patch)
2012-07-28 02:31 PDT, Ryosuke Niwa
eric: review+
Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Ryosuke Niwa 2012-07-28 00:59:13 PDT
Right now, run-perf-tests doesn't provide a results page to view results.
Given that one of common workflow is to performance tests before and after applying a patch and comparing results,
run-perf-tests should generate a results page, and ideally provide a way to compare results from different runs.
Comment 1 Ryosuke Niwa 2012-07-28 01:38:02 PDT
Created attachment 155120 [details]
Screenshot of current results.html
Comment 2 Ryosuke Niwa 2012-07-28 01:56:53 PDT
Created attachment 155121 [details]
Patch
Comment 3 Ryosuke Niwa 2012-07-28 02:02:06 PDT
Created attachment 155123 [details]
Sample results page
Comment 4 Ryosuke Niwa 2012-07-28 02:23:11 PDT
Created attachment 155124 [details]
Use the same filename as the output JSON
Comment 5 Ryosuke Niwa 2012-07-28 02:24:16 PDT
Dear reviewers: the patch is actually quite small. It's bloated by the flot and flot.fillbetween.
Comment 6 WebKit Review Bot 2012-07-28 02:25:43 PDT
Attachment 155124 [details] did not pass style-queue:

Failed to run "['Tools/Scripts/check-webkit-style', '--diff-files', u'PerformanceTests/ChangeLog', u'Performance..." exit_code: 1
Tools/ChangeLog:15:  Line contains tab character.  [whitespace/tab] [5]
Tools/ChangeLog:18:  Line contains tab character.  [whitespace/tab] [5]
Tools/ChangeLog:19:  Line contains tab character.  [whitespace/tab] [5]
Total errors found: 3 in 5 files


If any of these errors are false positives, please file a bug against check-webkit-style.
Comment 7 Ryosuke Niwa 2012-07-28 02:31:44 PDT
Created attachment 155125 [details]
Removed tabs
Comment 8 Ryosuke Niwa 2012-07-28 03:13:00 PDT
Note that a natural follow up patch to this will be giving a default JSON output path, and then have run-perf-tests open the results page at the end like run-webkit-tests does when there are failures.
Comment 9 Eric Seidel (no email) 2012-07-29 14:57:04 PDT
Comment on attachment 155125 [details]
Removed tabs

I mean, we could easily have a resources/ directory for the results template, instead of inlining the minimize script.  But this is also OK for now.  run-perf-tests could even inline the scripts into the HTML if that were necessary.
Comment 10 Ryosuke Niwa 2012-07-29 14:59:09 PDT
Thanks for the review.

(In reply to comment #9)
> (From update of attachment 155125 [details])
> I mean, we could easily have a resources/ directory for the results template, instead of inlining the minimize script.

My intention is to use this infrastructure for perf. EWS so being able to upload to Bugzilla without having to zip is quite important.

> But this is also OK for now.  run-perf-tests could even inline the scripts into the HTML if that were necessary.

Yes, that's what we're doing here. We inline all scripts and JSON into the results page.
Comment 11 Ryosuke Niwa 2012-07-29 15:03:42 PDT
Committed r123985: <http://trac.webkit.org/changeset/123985>