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

Issue 1827313002: Reland of Add bisect config validation. (Closed)

Created:
4 years, 9 months ago by qyearsley
Modified:
4 years, 8 months ago
CC:
chromium-reviews, infra-reviews+build_chromium.org, kjellander-cc_chromium.org, prasadv, sullivan
Base URL:
https://chromium.googlesource.com/chromium/tools/build.git@master
Target Ref:
refs/heads/master
Project:
build
Visibility:
Public.

Description

Reland of Add bisect config validation. (patchset #1 id:1 of https://codereview.chromium.org/1831843002/ ) Reason for revert: Reland bisect config validation with bug fix Original issue's description: > Revert of Add bisect config validation. (patchset #4 id:60001 of https://codereview.chromium.org/1782333002/ ) > > Reason for revert: > https://bugs.chromium.org/p/chromium/issues/detail?id=597655 > > Original issue's description: > > Add bisect config validation. > > > > BUG=485672 > > > > Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=299450 > > TBR=chrisphan@chromium.org,robertocn@chromium.org > # Skipping CQ checks because original CL landed less than 1 days ago. > NOPRESUBMIT=true > NOTREECHECKS=true > NOTRY=true > BUG=485672 > > Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=299470 TBR=chrisphan@chromium.org,robertocn@chromium.org # Skipping CQ checks because original CL landed less than 1 days ago. NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=485672 Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=299570

Patch Set 1 #

Patch Set 2 : Allow None as a valid value for all non-required fields. #

Total comments: 2

Patch Set 3 : Rebased #

Unified diffs Side-by-side diffs Delta from patch set Stats (+402 lines, -43 lines) Patch
M scripts/slave/recipe_modules/auto_bisect/bisector.py View 1 2 4 chunks +17 lines, -4 lines 0 comments Download
A scripts/slave/recipe_modules/auto_bisect/config_validation.py View 1 1 chunk +110 lines, -0 lines 0 comments Download
A scripts/slave/recipe_modules/auto_bisect/config_validation_test.py View 1 1 chunk +177 lines, -0 lines 0 comments Download
M scripts/slave/recipe_modules/auto_bisect/example.py View 1 2 3 chunks +7 lines, -2 lines 0 comments Download
M scripts/slave/recipe_modules/auto_bisect/example.expected/android_arm64_bisector.json View 1 2 1 chunk +1 line, -1 line 0 comments Download
M scripts/slave/recipe_modules/auto_bisect/example.expected/android_bisector.json View 1 2 1 chunk +1 line, -1 line 0 comments Download
M scripts/slave/recipe_modules/auto_bisect/example.expected/basic.json View 1 2 1 chunk +1 line, -1 line 0 comments Download
M scripts/slave/recipe_modules/auto_bisect/example.expected/basic_bisect_script.json View 1 2 3 chunks +4 lines, -4 lines 0 comments Download
M scripts/slave/recipe_modules/auto_bisect/example.expected/delayed_build_test.json View 1 2 1 chunk +1 line, -1 line 0 comments Download
M scripts/slave/recipe_modules/auto_bisect/example.expected/failed_build_test.json View 1 2 1 chunk +1 line, -1 line 0 comments Download
M scripts/slave/recipe_modules/auto_bisect/example.expected/failed_test.json View 1 2 1 chunk +1 line, -1 line 0 comments Download
A scripts/slave/recipe_modules/auto_bisect/example.expected/invalid_config.json View 1 chunk +66 lines, -0 lines 0 comments Download
M scripts/slave/recipe_modules/auto_bisect/example.expected/mac_bisector.json View 1 2 1 chunk +1 line, -1 line 0 comments Download
M scripts/slave/recipe_modules/auto_bisect/example.expected/missing_metric_test.json View 1 2 1 chunk +1 line, -1 line 0 comments Download
M scripts/slave/recipe_modules/auto_bisect/example.expected/reversed_basic.json View 1 2 1 chunk +1 line, -1 line 0 comments Download
M scripts/slave/recipe_modules/auto_bisect/example.expected/windows_bisector.json View 1 2 1 chunk +1 line, -1 line 0 comments Download
M scripts/slave/recipe_modules/auto_bisect/example.expected/windows_x64_bisector.json View 1 2 1 chunk +1 line, -1 line 0 comments Download
M scripts/slave/recipes/bisect_test/example_bisect_results.py View 1 2 1 chunk +0 lines, -2 lines 0 comments Download
M scripts/slave/recipes/bisect_test/example_bisect_results.expected/aborted_non_telemetry_test.json View 1 2 3 chunks +2 lines, -4 lines 0 comments Download
M scripts/slave/recipes/bisect_test/example_bisect_results.expected/basic_test.json View 1 2 3 chunks +2 lines, -4 lines 0 comments Download
M scripts/slave/recipes/bisect_test/example_bisect_results.expected/deps_culprit_test.json View 1 2 3 chunks +2 lines, -4 lines 0 comments Download
M scripts/slave/recipes/bisect_test/example_bisect_results.expected/failed_direction_test.json View 1 2 3 chunks +2 lines, -4 lines 0 comments Download
M scripts/slave/recipes/bisect_test/example_bisect_results.expected/failed_test.json View 1 2 3 chunks +2 lines, -4 lines 0 comments Download

Messages

Total messages: 18 (6 generated)
qyearsley
Created Reland of Add bisect config validation.
4 years, 9 months ago (2016-03-24 22:44:13 UTC) #1
chrisphan
lgtm What was the bug fix?
4 years, 9 months ago (2016-03-24 22:54:21 UTC) #2
qyearsley
On 2016/03/24 at 22:54:21, chrisphan wrote: > lgtm > > What was the bug fix? ...
4 years, 9 months ago (2016-03-24 23:06:52 UTC) #3
qyearsley
https://codereview.chromium.org/1827313002/diff/290001/scripts/slave/recipe_modules/auto_bisect/config_validation.py File scripts/slave/recipe_modules/auto_bisect/config_validation.py (right): https://codereview.chromium.org/1827313002/diff/290001/scripts/slave/recipe_modules/auto_bisect/config_validation.py#newcode52 scripts/slave/recipe_modules/auto_bisect/config_validation.py:52: if config.get(key) is None: This is the line that ...
4 years, 9 months ago (2016-03-24 23:20:54 UTC) #4
chrisphan
https://codereview.chromium.org/1827313002/diff/290001/scripts/slave/recipe_modules/auto_bisect/config_validation.py File scripts/slave/recipe_modules/auto_bisect/config_validation.py (right): https://codereview.chromium.org/1827313002/diff/290001/scripts/slave/recipe_modules/auto_bisect/config_validation.py#newcode52 scripts/slave/recipe_modules/auto_bisect/config_validation.py:52: if config.get(key) is None: On 2016/03/24 23:20:54, qyearsley wrote: ...
4 years, 9 months ago (2016-03-24 23:24:58 UTC) #5
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1827313002/290001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1827313002/290001
4 years, 9 months ago (2016-03-24 23:25:21 UTC) #7
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 9 months ago (2016-03-24 23:25:24 UTC) #9
qyearsley
On 2016/03/24 at 23:25:24, commit-bot wrote: > Dry run: This issue passed the CQ dry ...
4 years, 9 months ago (2016-03-25 21:27:43 UTC) #11
qyearsley
On 2016/03/25 at 21:27:43, qyearsley wrote: > On 2016/03/24 at 23:25:24, commit-bot wrote: > > ...
4 years, 8 months ago (2016-03-29 15:57:58 UTC) #12
prasadv
lgtm
4 years, 8 months ago (2016-03-30 17:44:05 UTC) #13
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1827313002/310001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1827313002/310001
4 years, 8 months ago (2016-03-30 17:45:35 UTC) #16
commit-bot: I haz the power
4 years, 8 months ago (2016-03-30 17:45:47 UTC) #18
Message was sent while issue was closed.
Committed patchset #3 (id:310001) as
http://src.chromium.org/viewvc/chrome?view=rev&revision=299570

Powered by Google App Engine
This is Rietveld 408576698