Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(450)

Issue 339623002: Added support for versioning of layout test results of run-webkit-tests runs (Closed)

Created:
6 years, 6 months ago by patro
Modified:
6 years, 3 months ago
Reviewers:
Dirk Pranke, ojan, eseidel
CC:
ojan, eseidel, esprehn, Ken Russell (switch to Gerrit), RaviKasibhatla, vivekg
Base URL:
https://chromium.googlesource.com/chromium/blink.git@master
Project:
blink
Visibility:
Public.

Description

Added support for versioning of layout test results of run-webkit-tests runs. And to generate a dashboard of all archived layout test results. On local runs of run-webkit-tests, the results are overwritten. If required, we cannot refer to the older generated which might be required many times. Instead we can archive the results by adding a time-stamp to the folder name on each run which will help us track the change in results with each iteration of results run. And also we can generate a dashboard out of all the archived results to validate each individual test over many iterations of testing. BUG=305508 Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=179332

Patch Set 1 #

Patch Set 2 : #

Total comments: 18

Patch Set 3 : Addressing comments #

Total comments: 40

Patch Set 4 : Addressing comments #

Total comments: 4

Patch Set 5 : #

Total comments: 2

Patch Set 6 : Added unittest #

Total comments: 2

Patch Set 7 : #

Patch Set 8 : #

Total comments: 8

Patch Set 9 : Addressing comments #

Patch Set 10 : Added layout test #

Unified diffs Side-by-side diffs Delta from patch set Stats (+474 lines, -3 lines) Patch
A LayoutTests/fast/harness/archived-results-dashboard.html View 1 2 3 4 5 6 7 8 9 1 chunk +134 lines, -0 lines 0 comments Download
A LayoutTests/fast/harness/archived-results-dashboard-expected.txt View 1 2 3 4 5 6 7 8 9 1 chunk +11 lines, -0 lines 0 comments Download
A LayoutTests/fast/harness/resources/archived-results-dashboard-test.js View 1 2 3 4 5 6 7 8 9 1 chunk +92 lines, -0 lines 0 comments Download
M LayoutTests/fast/harness/results.html View 1 2 3 4 1 chunk +1 line, -1 line 0 comments Download
M Tools/Scripts/webkitpy/layout_tests/controllers/manager.py View 1 2 3 4 5 6 7 8 2 chunks +22 lines, -1 line 0 comments Download
A Tools/Scripts/webkitpy/layout_tests/generate_results_dashboard.py View 1 2 3 4 5 6 7 8 9 1 chunk +146 lines, -0 lines 0 comments Download
A Tools/Scripts/webkitpy/layout_tests/process_json_data_unittest.py View 1 2 3 4 5 6 7 8 1 chunk +60 lines, -0 lines 0 comments Download
M Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py View 1 2 3 4 5 6 7 8 3 chunks +8 lines, -1 line 0 comments Download

Messages

Total messages: 41 (1 generated)
patro
Kindly review Some clean up is still required especially in dashboard.html I wanted to get ...
6 years, 6 months ago (2014-06-16 15:18:10 UTC) #1
eseidel
Dirk or Ojan are the correct reviewers.
6 years, 6 months ago (2014-06-17 15:41:32 UTC) #2
eseidel
6 years, 6 months ago (2014-06-17 15:42:04 UTC) #3
Dirk Pranke
As I think this mostly has to do w/ storing and reflecting the results in ...
6 years, 6 months ago (2014-06-17 17:58:58 UTC) #4
ojan
I'm busy with the code yellow and will be on vacation for a couple weeks. ...
6 years, 6 months ago (2014-06-17 23:33:09 UTC) #5
patro
On 2014/06/17 23:33:09, ojan-only-code-yellow-reviews wrote: > I'm busy with the code yellow and will be ...
6 years, 5 months ago (2014-07-15 10:25:18 UTC) #6
patro
Kindly Review !!! Thanks. https://codereview.chromium.org/339623002/diff/40001/Tools/Scripts/webkitpy/layout_tests/controllers/manager.py File Tools/Scripts/webkitpy/layout_tests/controllers/manager.py (right): https://codereview.chromium.org/339623002/diff/40001/Tools/Scripts/webkitpy/layout_tests/controllers/manager.py#newcode44 Tools/Scripts/webkitpy/layout_tests/controllers/manager.py:44: from webkitpy.common.checkout.scm.detection import SCMDetector On ...
6 years, 5 months ago (2014-07-15 10:36:57 UTC) #7
Dirk Pranke
lots more comments , now that I'm taking a closer look at this and have ...
6 years, 5 months ago (2014-07-15 20:50:01 UTC) #8
patro
Kindly Review, I will modify dashboard.html and results.html and upload it soon in the next ...
6 years, 5 months ago (2014-07-16 14:37:37 UTC) #9
Dirk Pranke
getting closer ... https://codereview.chromium.org/339623002/diff/60001/Tools/Scripts/webkitpy/layout_tests/generate_results_dashboard.py File Tools/Scripts/webkitpy/layout_tests/generate_results_dashboard.py (right): https://codereview.chromium.org/339623002/diff/60001/Tools/Scripts/webkitpy/layout_tests/generate_results_dashboard.py#newcode47 Tools/Scripts/webkitpy/layout_tests/generate_results_dashboard.py:47: self._input_json_data = "" On 2014/07/16 14:37:37, ...
6 years, 5 months ago (2014-07-16 19:32:44 UTC) #10
patro
PTAL Thanks Shyam https://codereview.chromium.org/339623002/diff/80001/Tools/Scripts/webkitpy/layout_tests/controllers/manager.py File Tools/Scripts/webkitpy/layout_tests/controllers/manager.py (right): https://codereview.chromium.org/339623002/diff/80001/Tools/Scripts/webkitpy/layout_tests/controllers/manager.py#newcode168 Tools/Scripts/webkitpy/layout_tests/controllers/manager.py:168: return archived_path On 2014/07/16 19:32:44, Dirk ...
6 years, 5 months ago (2014-07-18 06:53:25 UTC) #11
Dirk Pranke
On 2014/07/18 06:53:25, shyamp wrote: > https://codereview.chromium.org/339623002/diff/80001/Tools/Scripts/webkitpy/layout_tests/generate_results_dashboard.py > File Tools/Scripts/webkitpy/layout_tests/generate_results_dashboard.py (right): > > https://codereview.chromium.org/339623002/diff/80001/Tools/Scripts/webkitpy/layout_tests/generate_results_dashboard.py#newcode46 > ...
6 years, 5 months ago (2014-07-18 17:08:57 UTC) #12
patro
On 2014/07/18 17:08:57, Dirk Pranke wrote: > On 2014/07/18 06:53:25, shyamp wrote: > > > ...
6 years, 5 months ago (2014-07-18 17:55:33 UTC) #13
patro
On 2014/07/18 17:55:33, shyamp wrote: > On 2014/07/18 17:08:57, Dirk Pranke wrote: > > On ...
6 years, 5 months ago (2014-07-22 14:59:55 UTC) #14
Dirk Pranke
looks fine so far ... https://codereview.chromium.org/339623002/diff/100001/Tools/Scripts/webkitpy/layout_tests/generate_results_dashboard.py File Tools/Scripts/webkitpy/layout_tests/generate_results_dashboard.py (right): https://codereview.chromium.org/339623002/diff/100001/Tools/Scripts/webkitpy/layout_tests/generate_results_dashboard.py#newcode65 Tools/Scripts/webkitpy/layout_tests/generate_results_dashboard.py:65: self._current_result_json_dict['tests'] = json.loads(input_json_string)["tests"] nit: ...
6 years, 5 months ago (2014-07-22 20:02:05 UTC) #15
patro
PTAL. Thanks, Shyam Patro https://codereview.chromium.org/339623002/diff/100001/Tools/Scripts/webkitpy/layout_tests/generate_results_dashboard.py File Tools/Scripts/webkitpy/layout_tests/generate_results_dashboard.py (right): https://codereview.chromium.org/339623002/diff/100001/Tools/Scripts/webkitpy/layout_tests/generate_results_dashboard.py#newcode65 Tools/Scripts/webkitpy/layout_tests/generate_results_dashboard.py:65: self._current_result_json_dict['tests'] = json.loads(input_json_string)["tests"] On 2014/07/22 ...
6 years, 5 months ago (2014-07-24 09:29:15 UTC) #16
Dirk Pranke
https://codereview.chromium.org/339623002/diff/120001/Tools/Scripts/webkitpy/layout_tests/process_json_data.py File Tools/Scripts/webkitpy/layout_tests/process_json_data.py (right): https://codereview.chromium.org/339623002/diff/120001/Tools/Scripts/webkitpy/layout_tests/process_json_data.py#newcode1 Tools/Scripts/webkitpy/layout_tests/process_json_data.py:1: # Copyright (C) 2014 Google Inc. All rights reserved. ...
6 years, 5 months ago (2014-07-25 00:42:55 UTC) #17
patro
PTAL, Thanks Shyam Patro https://codereview.chromium.org/339623002/diff/120001/Tools/Scripts/webkitpy/layout_tests/process_json_data.py File Tools/Scripts/webkitpy/layout_tests/process_json_data.py (right): https://codereview.chromium.org/339623002/diff/120001/Tools/Scripts/webkitpy/layout_tests/process_json_data.py#newcode1 Tools/Scripts/webkitpy/layout_tests/process_json_data.py:1: # Copyright (C) 2014 Google ...
6 years, 5 months ago (2014-07-25 05:14:35 UTC) #18
Dirk Pranke
On 2014/07/25 05:14:35, shyamp wrote: > Done. Seems fine. I've lost track, though: what's left ...
6 years, 5 months ago (2014-07-25 16:33:45 UTC) #19
patro
On 2014/07/25 16:33:45, Dirk Pranke wrote: > On 2014/07/25 05:14:35, shyamp wrote: > > Done. ...
6 years, 4 months ago (2014-07-28 12:48:05 UTC) #20
patro
The CQ bit was checked by behara.ms@samsung.com
6 years, 4 months ago (2014-07-28 12:48:15 UTC) #21
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/behara.ms@samsung.com/339623002/160001
6 years, 4 months ago (2014-07-28 12:48:53 UTC) #22
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 4 months ago (2014-07-28 12:48:56 UTC) #23
commit-bot: I haz the power
No LGTM from a valid reviewer yet. Only full committers are accepted. Even if an ...
6 years, 4 months ago (2014-07-28 12:48:57 UTC) #24
Dirk Pranke
> To Summarize Current Design > All the feedback has been incorporated .... Okay, I'll ...
6 years, 4 months ago (2014-07-29 00:16:13 UTC) #25
Dirk Pranke
On 2014/07/28 12:48:05, patro wrote: > > All the feedback has been incorporated .... Okay, ...
6 years, 4 months ago (2014-07-29 00:16:48 UTC) #26
Dirk Pranke
lgtm. Please fix the nits below, if possible, but otherwise I think this looks okay ...
6 years, 4 months ago (2014-07-29 18:53:06 UTC) #27
patro
PTAL Thanks Shyam Patro https://codereview.chromium.org/339623002/diff/160001/Tools/Scripts/webkitpy/layout_tests/controllers/manager.py File Tools/Scripts/webkitpy/layout_tests/controllers/manager.py (right): https://codereview.chromium.org/339623002/diff/160001/Tools/Scripts/webkitpy/layout_tests/controllers/manager.py#newcode156 Tools/Scripts/webkitpy/layout_tests/controllers/manager.py:156: timestamp = time.strftime("%Y-%m-%d-%H-%M-%S", time.gmtime(self._filesystem.mtime(self._filesystem.join(self._results_directory, "results.html")))) ...
6 years, 4 months ago (2014-07-30 06:37:45 UTC) #28
patro
The CQ bit was checked by behara.ms@samsung.com
6 years, 4 months ago (2014-07-30 06:37:58 UTC) #29
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/behara.ms@samsung.com/339623002/180001
6 years, 4 months ago (2014-07-30 06:39:21 UTC) #30
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: linux_blink_dbg on tryserver.blink ...
6 years, 4 months ago (2014-07-30 07:46:33 UTC) #31
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 4 months ago (2014-07-30 08:12:52 UTC) #32
commit-bot: I haz the power
Try jobs failed on following builders: linux_blink_rel on tryserver.blink (http://build.chromium.org/p/tryserver.blink/builders/linux_blink_rel/builds/18219)
6 years, 4 months ago (2014-07-30 08:12:53 UTC) #33
patro
The CQ bit was checked by behara.ms@samsung.com
6 years, 4 months ago (2014-07-31 15:43:47 UTC) #34
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/behara.ms@samsung.com/339623002/200001
6 years, 4 months ago (2014-07-31 15:44:02 UTC) #35
patro
The CQ bit was unchecked by behara.ms@samsung.com
6 years, 4 months ago (2014-07-31 15:44:49 UTC) #36
patro
The CQ bit was checked by behara.ms@samsung.com
6 years, 4 months ago (2014-07-31 15:47:51 UTC) #37
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/behara.ms@samsung.com/339623002/200001
6 years, 4 months ago (2014-07-31 15:49:14 UTC) #38
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: win_blink_rel on tryserver.blink ...
6 years, 4 months ago (2014-07-31 17:58:32 UTC) #39
commit-bot: I haz the power
6 years, 4 months ago (2014-07-31 18:34:07 UTC) #40
Message was sent while issue was closed.
Change committed as 179332

Powered by Google App Engine
This is Rietveld 408576698