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

Issue 2183913002: Removes build and builder object refrences along with minor bug fixes (Closed)

Created:
4 years, 4 months ago by dcampb
Modified:
4 years, 4 months ago
CC:
blink-reviews, blink-reviews-w3ctests_chromium.org, chromium-reviews, Dirk Pranke
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Removes build and builder object references along with minor bug fixes This CL: 1. Removes the uses of build and builder objects in main and get_failing_results_dict. 2. Returns a new dictionary with merged_keys in merge_same_valued_keys. 3. Adds more test failure types to get_expectations to return more accurate expectations. 4. Modifies create_line_list to only create a line if the test name starts with 'imported'. 5. Changes variable names in main. 6. Adds unit tests to cover multiple actual and expected results in get_expectations. BUG=625254 Committed: https://crrev.com/201b0fae1eb4cbd645603683631fa3959faf74b9 Cr-Commit-Position: refs/heads/master@{#408217}

Patch Set 1 : Removes build and builder object refrences along with minor bug fixes #

Total comments: 16

Patch Set 2 : Modified create_line_list to only add imported/ tests #

Patch Set 3 : Added unit tests and changed variable names in main #

Total comments: 24

Patch Set 4 : Adds more failure types and test expectation types to get_expectations #

Unified diffs Side-by-side diffs Delta from patch set Stats (+89 lines, -72 lines) Patch
M third_party/WebKit/Tools/Scripts/webkitpy/w3c/update_w3c_test_expectations.py View 1 2 3 7 chunks +65 lines, -57 lines 0 comments Download
M third_party/WebKit/Tools/Scripts/webkitpy/w3c/update_w3c_test_expectations_unittest.py View 1 2 3 1 chunk +24 lines, -15 lines 0 comments Download

Messages

Total messages: 31 (16 generated)
dcampb
4 years, 4 months ago (2016-07-26 18:43:59 UTC) #4
dcampb
4 years, 4 months ago (2016-07-26 21:30:27 UTC) #12
qyearsley
A few nits and some potential improvements (all optional) listed below. Also, this could have ...
4 years, 4 months ago (2016-07-26 21:40:36 UTC) #13
dcampb
https://codereview.chromium.org/2183913002/diff/40001/third_party/WebKit/Tools/Scripts/webkitpy/w3c/update_w3c_test_expectations.py File third_party/WebKit/Tools/Scripts/webkitpy/w3c/update_w3c_test_expectations.py (right): https://codereview.chromium.org/2183913002/diff/40001/third_party/WebKit/Tools/Scripts/webkitpy/w3c/update_w3c_test_expectations.py#newcode34 third_party/WebKit/Tools/Scripts/webkitpy/w3c/update_w3c_test_expectations.py:34: platform_results_dict = expectations_line_adder.get_failing_results_dict(buildbot, builder_name, build_number) On 2016/07/26 at 21:40:35, ...
4 years, 4 months ago (2016-07-26 22:08:35 UTC) #14
dcampb
Please look over if you have time.
4 years, 4 months ago (2016-07-26 22:58:51 UTC) #15
Dirk Pranke
lgtm w/ qyearsley's approval.
4 years, 4 months ago (2016-07-26 23:19:39 UTC) #17
qyearsley
Thanks for adding details to the CL description, that is helpful. I'm still not quite ...
4 years, 4 months ago (2016-07-26 23:59:43 UTC) #18
dcampb
https://codereview.chromium.org/2183913002/diff/100001/third_party/WebKit/Tools/Scripts/webkitpy/w3c/update_w3c_test_expectations.py File third_party/WebKit/Tools/Scripts/webkitpy/w3c/update_w3c_test_expectations.py (right): https://codereview.chromium.org/2183913002/diff/100001/third_party/WebKit/Tools/Scripts/webkitpy/w3c/update_w3c_test_expectations.py#newcode162 third_party/WebKit/Tools/Scripts/webkitpy/w3c/update_w3c_test_expectations.py:162: """Returns a list of test expectations for a given ...
4 years, 4 months ago (2016-07-27 16:26:36 UTC) #19
dcampb
https://codereview.chromium.org/2183913002/diff/100001/third_party/WebKit/Tools/Scripts/webkitpy/w3c/update_w3c_test_expectations.py File third_party/WebKit/Tools/Scripts/webkitpy/w3c/update_w3c_test_expectations.py (right): https://codereview.chromium.org/2183913002/diff/100001/third_party/WebKit/Tools/Scripts/webkitpy/w3c/update_w3c_test_expectations.py#newcode184 third_party/WebKit/Tools/Scripts/webkitpy/w3c/update_w3c_test_expectations.py:184: for actual in results['actual'].split(): On 2016/07/27 at 16:26:36, dcampb ...
4 years, 4 months ago (2016-07-27 16:44:24 UTC) #20
qyearsley
https://codereview.chromium.org/2183913002/diff/100001/third_party/WebKit/Tools/Scripts/webkitpy/w3c/update_w3c_test_expectations.py File third_party/WebKit/Tools/Scripts/webkitpy/w3c/update_w3c_test_expectations.py (right): https://codereview.chromium.org/2183913002/diff/100001/third_party/WebKit/Tools/Scripts/webkitpy/w3c/update_w3c_test_expectations.py#newcode162 third_party/WebKit/Tools/Scripts/webkitpy/w3c/update_w3c_test_expectations.py:162: """Returns a list of test expectations for a given ...
4 years, 4 months ago (2016-07-27 17:25:40 UTC) #21
dcampb
https://codereview.chromium.org/2183913002/diff/100001/third_party/WebKit/Tools/Scripts/webkitpy/w3c/update_w3c_test_expectations.py File third_party/WebKit/Tools/Scripts/webkitpy/w3c/update_w3c_test_expectations.py (right): https://codereview.chromium.org/2183913002/diff/100001/third_party/WebKit/Tools/Scripts/webkitpy/w3c/update_w3c_test_expectations.py#newcode162 third_party/WebKit/Tools/Scripts/webkitpy/w3c/update_w3c_test_expectations.py:162: """Returns a list of test expectations for a given ...
4 years, 4 months ago (2016-07-27 18:17:50 UTC) #23
qyearsley
lgtm
4 years, 4 months ago (2016-07-27 18:20:44 UTC) #25
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2183913002/140001
4 years, 4 months ago (2016-07-27 18:47:07 UTC) #28
commit-bot: I haz the power
Committed patchset #4 (id:140001)
4 years, 4 months ago (2016-07-27 19:49:20 UTC) #29
commit-bot: I haz the power
4 years, 4 months ago (2016-07-27 19:51:28 UTC) #31
Message was sent while issue was closed.
Patchset 4 (id:??) landed as
https://crrev.com/201b0fae1eb4cbd645603683631fa3959faf74b9
Cr-Commit-Position: refs/heads/master@{#408217}

Powered by Google App Engine
This is Rietveld 408576698