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

Issue 2247373002: Refactor stages 1, 2 and test_api overhaul. (Closed)

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

Description

go/bisectrefactor Highlights: - revision_state no longer has a status property. - revision_state.start_job runs sequentially: ([request build, wait for it], test it) - removed lotsa legacy cruft. - hypothesis testing is offloaded to catapult. (https://codereview.chromium.org/2089833002/) - step_test_data for all bisect related steps is generated from simple descriptions of each revision's result. (See test_api.py and example.py Committed: https://chromium.googlesource.com/chromium/tools/build/+/3d68b83bc307ab0f55225956ce533d18fce26bac

Patch Set 1 #

Total comments: 4

Patch Set 2 : Removing debug prints. #

Total comments: 6

Patch Set 3 : Increased testing coverage #

Patch Set 4 : Smaller patchset (no expectation changes) #

Patch Set 5 : Got full coverage for new and changed code. #

Total comments: 4

Patch Set 6 : Rebasing, addressing feedback. #

Total comments: 24

Patch Set 7 : Addressing all early feedback. #

Total comments: 28

Patch Set 8 : Simplified test_api.revision_data, renamed to parsed_values. #

Patch Set 9 : Rebase and pre-roll fixes, #

Patch Set 10 : Rebasing the refactor on top of staging modules #

Patch Set 11 : Rebase and retrain #

Patch Set 12 : Lint: unused variables. #

Patch Set 13 : Rebasing after OWNERS change #

Patch Set 14 : Relative intra-module imports. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+69369 lines, -28418 lines) Patch
M scripts/slave/recipe_modules/auto_bisect_staging/api.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 chunks +56 lines, -61 lines 0 comments Download
A scripts/slave/recipe_modules/auto_bisect_staging/bisect_exceptions.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +16 lines, -0 lines 0 comments Download
M scripts/slave/recipe_modules/auto_bisect_staging/bisector.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 26 chunks +90 lines, -242 lines 0 comments Download
D scripts/slave/recipe_modules/auto_bisect_staging/bisector_test.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +0 lines, -202 lines 0 comments Download
M scripts/slave/recipe_modules/auto_bisect_staging/example.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 2 chunks +680 lines, -401 lines 0 comments Download
D scripts/slave/recipe_modules/auto_bisect_staging/example.expected/android_arm64_bisector.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +0 lines, -1052 lines 0 comments Download
D scripts/slave/recipe_modules/auto_bisect_staging/example.expected/android_bisector.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +0 lines, -1052 lines 0 comments Download
A + scripts/slave/recipe_modules/auto_bisect_staging/example.expected/bad_config.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 4 chunks +64 lines, -66 lines 0 comments Download
D scripts/slave/recipe_modules/auto_bisect_staging/example.expected/basic.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +0 lines, -1052 lines 0 comments Download
A scripts/slave/recipe_modules/auto_bisect_staging/example.expected/basic_bisect_other_direction.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +5616 lines, -0 lines 0 comments Download
D scripts/slave/recipe_modules/auto_bisect_staging/example.expected/basic_bisect_script.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +0 lines, -1052 lines 0 comments Download
A scripts/slave/recipe_modules/auto_bisect_staging/example.expected/basic_linux_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +6208 lines, -0 lines 0 comments Download
A scripts/slave/recipe_modules/auto_bisect_staging/example.expected/basic_mac_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +6028 lines, -0 lines 0 comments Download
A scripts/slave/recipe_modules/auto_bisect_staging/example.expected/basic_win32_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +1937 lines, -0 lines 0 comments Download
A scripts/slave/recipe_modules/auto_bisect_staging/example.expected/basic_win64_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +1937 lines, -0 lines 0 comments Download
D scripts/slave/recipe_modules/auto_bisect_staging/example.expected/delayed_build_test.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +0 lines, -646 lines 0 comments Download
A scripts/slave/recipe_modules/auto_bisect_staging/example.expected/failed_build.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +1180 lines, -0 lines 0 comments Download
D scripts/slave/recipe_modules/auto_bisect_staging/example.expected/failed_build_test.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +0 lines, -485 lines 0 comments Download
A scripts/slave/recipe_modules/auto_bisect_staging/example.expected/failed_reference_range.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +1500 lines, -0 lines 0 comments Download
A scripts/slave/recipe_modules/auto_bisect_staging/example.expected/failed_revision.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +2139 lines, -0 lines 0 comments Download
D scripts/slave/recipe_modules/auto_bisect_staging/example.expected/failed_test.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +0 lines, -524 lines 0 comments Download
D scripts/slave/recipe_modules/auto_bisect_staging/example.expected/invalid_config.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +0 lines, -66 lines 0 comments Download
D scripts/slave/recipe_modules/auto_bisect_staging/example.expected/mac_bisector.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +0 lines, -1052 lines 0 comments Download
D scripts/slave/recipe_modules/auto_bisect_staging/example.expected/missing_metric_test.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +0 lines, -403 lines 0 comments Download
A scripts/slave/recipe_modules/auto_bisect_staging/example.expected/no_repro.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +1559 lines, -0 lines 0 comments Download
A scripts/slave/recipe_modules/auto_bisect_staging/example.expected/retest_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +5691 lines, -0 lines 0 comments Download
A scripts/slave/recipe_modules/auto_bisect_staging/example.expected/return_code.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +2332 lines, -0 lines 0 comments Download
D scripts/slave/recipe_modules/auto_bisect_staging/example.expected/reversed_basic.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +0 lines, -1052 lines 0 comments Download
A scripts/slave/recipe_modules/auto_bisect_staging/example.expected/v8_roll_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +9912 lines, -0 lines 0 comments Download
A scripts/slave/recipe_modules/auto_bisect_staging/example.expected/v8_roll_bisect_bis.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +7572 lines, -0 lines 0 comments Download
D scripts/slave/recipe_modules/auto_bisect_staging/example.expected/windows_bisector.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +0 lines, -1054 lines 0 comments Download
D scripts/slave/recipe_modules/auto_bisect_staging/example.expected/windows_x64_bisector.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +0 lines, -1054 lines 0 comments Download
M scripts/slave/recipe_modules/auto_bisect_staging/local_bisect.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 5 chunks +14 lines, -12 lines 0 comments Download
M scripts/slave/recipe_modules/auto_bisect_staging/revision_state.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 16 chunks +181 lines, -261 lines 0 comments Download
A scripts/slave/recipe_modules/auto_bisect_staging/test_api.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +208 lines, -0 lines 0 comments Download
M scripts/slave/recipe_modules/bisect_tester_staging/api.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 2 chunks +1 line, -61 lines 0 comments Download
M scripts/slave/recipe_modules/bisect_tester_staging/perf_test.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 6 chunks +48 lines, -85 lines 0 comments Download
M scripts/slave/recipe_modules/chromium_tests/steps.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +29 lines, -8 lines 0 comments Download
M scripts/slave/recipe_modules/perf_try_staging/__init__.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 2 chunks +5 lines, -5 lines 0 comments Download
M scripts/slave/recipe_modules/perf_try_staging/api.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 5 chunks +60 lines, -8 lines 0 comments Download
D scripts/slave/recipes/bisect.expected/OWNERS View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +0 lines, -3 lines 0 comments Download
D scripts/slave/recipes/bisect_staging.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +0 lines, -296 lines 0 comments Download
D scripts/slave/recipes/bisect_staging.expected/basic.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +0 lines, -1167 lines 0 comments Download
D scripts/slave/recipes/bisect_staging.expected/basic_return_code_test.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +0 lines, -1093 lines 0 comments Download
D scripts/slave/recipes/bisect_staging.expected/broken_bad_revision_test.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +0 lines, -756 lines 0 comments Download
D scripts/slave/recipes/bisect_staging.expected/broken_good_revision_test.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +0 lines, -743 lines 0 comments Download
D scripts/slave/recipes/bisect_test/example_bisect_results_staging.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +0 lines, -176 lines 0 comments Download
D scripts/slave/recipes/bisect_test/example_bisect_results_staging.expected/aborted_non_telemetry_test.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +0 lines, -149 lines 0 comments Download
D scripts/slave/recipes/bisect_test/example_bisect_results_staging.expected/basic_test.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +0 lines, -170 lines 0 comments Download
D scripts/slave/recipes/bisect_test/example_bisect_results_staging.expected/deps_culprit_test.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +0 lines, -170 lines 0 comments Download
D scripts/slave/recipes/bisect_test/example_bisect_results_staging.expected/failed_direction_test.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +0 lines, -149 lines 0 comments Download
D scripts/slave/recipes/bisect_test/example_bisect_results_staging.expected/failed_test.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +0 lines, -149 lines 0 comments Download
M scripts/slave/recipes/bisection/android_bisect_staging.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 11 chunks +110 lines, -98 lines 0 comments Download
D scripts/slave/recipes/bisection/android_bisect_staging.expected/basic_android_fyi_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +0 lines, -738 lines 0 comments Download
D scripts/slave/recipes/bisection/android_bisect_staging.expected/basic_android_nexus5X_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +0 lines, -738 lines 0 comments Download
D scripts/slave/recipes/bisection/android_bisect_staging.expected/basic_android_nexus5_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +0 lines, -738 lines 0 comments Download
D scripts/slave/recipes/bisection/android_bisect_staging.expected/basic_android_nexus6_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +0 lines, -738 lines 0 comments Download
D scripts/slave/recipes/bisection/android_bisect_staging.expected/basic_android_nexus7_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +0 lines, -738 lines 0 comments Download
D scripts/slave/recipes/bisection/android_bisect_staging.expected/basic_android_nexus9_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +0 lines, -738 lines 0 comments Download
D scripts/slave/recipes/bisection/android_bisect_staging.expected/basic_android_one_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +0 lines, -738 lines 0 comments Download
D scripts/slave/recipes/bisection/android_bisect_staging.expected/basic_android_s5_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +0 lines, -738 lines 0 comments Download
D scripts/slave/recipes/bisection/android_bisect_staging.expected/basic_android_s5_perf_cq.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +0 lines, -738 lines 0 comments Download
D scripts/slave/recipes/bisection/android_bisect_staging.expected/basic_android_webview_arm64_aosp_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +0 lines, -738 lines 0 comments Download
D scripts/slave/recipes/bisection/android_bisect_staging.expected/basic_android_webview_nexus6_aosp_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +0 lines, -738 lines 0 comments Download
M scripts/slave/recipes/bisection/android_bisect_staging.expected/basic_perf_tryjob_android_fyi_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 6 chunks +30 lines, -4 lines 0 comments Download
M scripts/slave/recipes/bisection/android_bisect_staging.expected/basic_perf_tryjob_android_nexus5X_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 6 chunks +30 lines, -4 lines 0 comments Download
M scripts/slave/recipes/bisection/android_bisect_staging.expected/basic_perf_tryjob_android_nexus5_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 6 chunks +30 lines, -4 lines 0 comments Download
M scripts/slave/recipes/bisection/android_bisect_staging.expected/basic_perf_tryjob_android_nexus6_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 6 chunks +30 lines, -4 lines 0 comments Download
M scripts/slave/recipes/bisection/android_bisect_staging.expected/basic_perf_tryjob_android_nexus7_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 6 chunks +30 lines, -4 lines 0 comments Download
M scripts/slave/recipes/bisection/android_bisect_staging.expected/basic_perf_tryjob_android_nexus9_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 6 chunks +30 lines, -4 lines 0 comments Download
M scripts/slave/recipes/bisection/android_bisect_staging.expected/basic_perf_tryjob_android_one_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 6 chunks +30 lines, -4 lines 0 comments Download
M scripts/slave/recipes/bisection/android_bisect_staging.expected/basic_perf_tryjob_android_s5_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 6 chunks +30 lines, -4 lines 0 comments Download
M scripts/slave/recipes/bisection/android_bisect_staging.expected/basic_perf_tryjob_android_s5_perf_cq.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 6 chunks +30 lines, -4 lines 0 comments Download
M scripts/slave/recipes/bisection/android_bisect_staging.expected/basic_perf_tryjob_android_webview_arm64_aosp_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 6 chunks +30 lines, -4 lines 0 comments Download
M scripts/slave/recipes/bisection/android_bisect_staging.expected/basic_perf_tryjob_android_webview_nexus6_aosp_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 6 chunks +30 lines, -4 lines 0 comments Download
M scripts/slave/recipes/bisection/android_bisect_staging.expected/basic_perf_tryjob_with_metric_android_fyi_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 7 chunks +149 lines, -9 lines 0 comments Download
M scripts/slave/recipes/bisection/android_bisect_staging.expected/basic_perf_tryjob_with_metric_android_nexus5X_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 7 chunks +149 lines, -9 lines 0 comments Download
M scripts/slave/recipes/bisection/android_bisect_staging.expected/basic_perf_tryjob_with_metric_android_nexus5_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 7 chunks +149 lines, -9 lines 0 comments Download
M scripts/slave/recipes/bisection/android_bisect_staging.expected/basic_perf_tryjob_with_metric_android_nexus6_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 7 chunks +149 lines, -9 lines 0 comments Download
M scripts/slave/recipes/bisection/android_bisect_staging.expected/basic_perf_tryjob_with_metric_android_nexus7_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 7 chunks +149 lines, -9 lines 0 comments Download
M scripts/slave/recipes/bisection/android_bisect_staging.expected/basic_perf_tryjob_with_metric_android_nexus9_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 7 chunks +149 lines, -9 lines 0 comments Download
M scripts/slave/recipes/bisection/android_bisect_staging.expected/basic_perf_tryjob_with_metric_android_one_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 7 chunks +149 lines, -9 lines 0 comments Download
M scripts/slave/recipes/bisection/android_bisect_staging.expected/basic_perf_tryjob_with_metric_android_s5_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 7 chunks +149 lines, -9 lines 0 comments Download
M scripts/slave/recipes/bisection/android_bisect_staging.expected/basic_perf_tryjob_with_metric_android_s5_perf_cq.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 7 chunks +149 lines, -9 lines 0 comments Download
M scripts/slave/recipes/bisection/android_bisect_staging.expected/basic_perf_tryjob_with_metric_android_webview_arm64_aosp_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 7 chunks +149 lines, -9 lines 0 comments Download
M scripts/slave/recipes/bisection/android_bisect_staging.expected/basic_perf_tryjob_with_metric_android_webview_nexus6_aosp_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 7 chunks +149 lines, -9 lines 0 comments Download
M scripts/slave/recipes/bisection/android_bisect_staging.expected/basic_perf_tryjob_with_revisions_android_fyi_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 7 chunks +149 lines, -9 lines 0 comments Download
M scripts/slave/recipes/bisection/android_bisect_staging.expected/basic_perf_tryjob_with_revisions_android_nexus5X_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 7 chunks +149 lines, -9 lines 0 comments Download
M scripts/slave/recipes/bisection/android_bisect_staging.expected/basic_perf_tryjob_with_revisions_android_nexus5_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 7 chunks +149 lines, -9 lines 0 comments Download
M scripts/slave/recipes/bisection/android_bisect_staging.expected/basic_perf_tryjob_with_revisions_android_nexus6_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 7 chunks +149 lines, -9 lines 0 comments Download
M scripts/slave/recipes/bisection/android_bisect_staging.expected/basic_perf_tryjob_with_revisions_android_nexus7_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 7 chunks +149 lines, -9 lines 0 comments Download
M scripts/slave/recipes/bisection/android_bisect_staging.expected/basic_perf_tryjob_with_revisions_android_nexus9_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 7 chunks +149 lines, -9 lines 0 comments Download
M scripts/slave/recipes/bisection/android_bisect_staging.expected/basic_perf_tryjob_with_revisions_android_one_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 7 chunks +149 lines, -9 lines 0 comments Download
M scripts/slave/recipes/bisection/android_bisect_staging.expected/basic_perf_tryjob_with_revisions_android_s5_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 7 chunks +149 lines, -9 lines 0 comments Download
M scripts/slave/recipes/bisection/android_bisect_staging.expected/basic_perf_tryjob_with_revisions_android_s5_perf_cq.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 7 chunks +149 lines, -9 lines 0 comments Download
M scripts/slave/recipes/bisection/android_bisect_staging.expected/basic_perf_tryjob_with_revisions_android_webview_arm64_aosp_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 7 chunks +149 lines, -9 lines 0 comments Download
M scripts/slave/recipes/bisection/android_bisect_staging.expected/basic_perf_tryjob_with_revisions_android_webview_nexus6_aosp_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 7 chunks +149 lines, -9 lines 0 comments Download
M scripts/slave/recipes/bisection/android_bisect_staging.expected/basic_recipe_android_fyi_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 8 chunks +39 lines, -59 lines 0 comments Download
M scripts/slave/recipes/bisection/android_bisect_staging.expected/basic_recipe_android_nexus5X_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 8 chunks +39 lines, -59 lines 0 comments Download
M scripts/slave/recipes/bisection/android_bisect_staging.expected/basic_recipe_android_nexus5_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 8 chunks +39 lines, -59 lines 0 comments Download
M scripts/slave/recipes/bisection/android_bisect_staging.expected/basic_recipe_android_nexus6_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 8 chunks +39 lines, -59 lines 0 comments Download
M scripts/slave/recipes/bisection/android_bisect_staging.expected/basic_recipe_android_nexus7_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 8 chunks +39 lines, -59 lines 0 comments Download
M scripts/slave/recipes/bisection/android_bisect_staging.expected/basic_recipe_android_nexus9_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 8 chunks +39 lines, -59 lines 0 comments Download
M scripts/slave/recipes/bisection/android_bisect_staging.expected/basic_recipe_android_one_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 8 chunks +39 lines, -59 lines 0 comments Download
M scripts/slave/recipes/bisection/android_bisect_staging.expected/basic_recipe_android_s5_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 8 chunks +39 lines, -59 lines 0 comments Download
M scripts/slave/recipes/bisection/android_bisect_staging.expected/basic_recipe_android_s5_perf_cq.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 8 chunks +39 lines, -59 lines 0 comments Download
M scripts/slave/recipes/bisection/android_bisect_staging.expected/basic_recipe_android_webview_arm64_aosp_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 8 chunks +39 lines, -59 lines 0 comments Download
M scripts/slave/recipes/bisection/android_bisect_staging.expected/basic_recipe_android_webview_nexus6_aosp_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 8 chunks +39 lines, -59 lines 0 comments Download
A + scripts/slave/recipes/bisection/android_bisect_staging.expected/failure_in_ref_range.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 44 chunks +422 lines, -200 lines 0 comments Download
M scripts/slave/recipes/bisection/android_bisect_staging.expected/local_basic_recipe_basic_device.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 48 chunks +464 lines, -158 lines 0 comments Download
M scripts/slave/recipes/bisection/android_bisect_staging.expected/local_basic_recipe_disconnected_device.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 86 chunks +6660 lines, -661 lines 0 comments Download
M scripts/slave/recipes/bisection/android_bisect_staging.expected/local_basic_recipe_failed_device.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 47 chunks +458 lines, -153 lines 0 comments Download
M scripts/slave/recipes/bisection/android_bisect_staging.expected/perf_tryjob_failed_test_android_fyi_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 6 chunks +137 lines, -5 lines 0 comments Download
M scripts/slave/recipes/bisection/android_bisect_staging.expected/perf_tryjob_failed_test_android_nexus5X_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 6 chunks +137 lines, -5 lines 0 comments Download
M scripts/slave/recipes/bisection/android_bisect_staging.expected/perf_tryjob_failed_test_android_nexus5_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 6 chunks +137 lines, -5 lines 0 comments Download
M scripts/slave/recipes/bisection/android_bisect_staging.expected/perf_tryjob_failed_test_android_nexus6_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 6 chunks +137 lines, -5 lines 0 comments Download
M scripts/slave/recipes/bisection/android_bisect_staging.expected/perf_tryjob_failed_test_android_nexus7_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 6 chunks +137 lines, -5 lines 0 comments Download
M scripts/slave/recipes/bisection/android_bisect_staging.expected/perf_tryjob_failed_test_android_nexus9_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 6 chunks +137 lines, -5 lines 0 comments Download
M scripts/slave/recipes/bisection/android_bisect_staging.expected/perf_tryjob_failed_test_android_one_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 6 chunks +137 lines, -5 lines 0 comments Download
M scripts/slave/recipes/bisection/android_bisect_staging.expected/perf_tryjob_failed_test_android_s5_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 6 chunks +137 lines, -5 lines 0 comments Download
M scripts/slave/recipes/bisection/android_bisect_staging.expected/perf_tryjob_failed_test_android_s5_perf_cq.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 6 chunks +137 lines, -5 lines 0 comments Download
M scripts/slave/recipes/bisection/android_bisect_staging.expected/perf_tryjob_failed_test_android_webview_arm64_aosp_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 6 chunks +137 lines, -5 lines 0 comments Download
M scripts/slave/recipes/bisection/android_bisect_staging.expected/perf_tryjob_failed_test_android_webview_nexus6_aosp_perf_bisect.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 6 chunks +137 lines, -5 lines 0 comments Download
M scripts/slave/recipes/bisection/desktop_bisect_staging.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 4 chunks +44 lines, -59 lines 0 comments Download
M scripts/slave/recipes/bisection/desktop_bisect_staging.expected/basic.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +2 lines, -100 lines 0 comments Download
D scripts/slave/recipes/bisection/desktop_bisect_staging.expected/basic_linux_bisect_tester_recipe.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +0 lines, -460 lines 0 comments Download
D scripts/slave/recipes/bisection/desktop_bisect_staging.expected/basic_linux_bisect_tester_recipe_ret_code.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +0 lines, -460 lines 0 comments Download
M scripts/slave/recipes/bisection/desktop_bisect_staging.expected/basic_perf_tryjob.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 2 chunks +22 lines, -0 lines 0 comments Download
M scripts/slave/recipes/bisection/desktop_bisect_staging.expected/basic_perf_tryjob_with_metric.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 4 chunks +111 lines, -5 lines 0 comments Download
A + scripts/slave/recipes/bisection/desktop_bisect_staging.expected/basic_perf_tryjob_with_metric_valueset.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 7 chunks +153 lines, -9 lines 0 comments Download
M scripts/slave/recipes/bisection/desktop_bisect_staging.expected/basic_perf_tryjob_with_revisions.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 7 chunks +153 lines, -9 lines 0 comments Download
M scripts/slave/recipes/bisection/desktop_bisect_staging.expected/deps_perf_tryjob.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 2 chunks +22 lines, -0 lines 0 comments Download
M scripts/slave/recipes/bisection/desktop_bisect_staging.expected/perf_tryjob_failed_test.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 6 chunks +141 lines, -5 lines 0 comments Download

Messages

Total messages: 45 (23 generated)
RobertoCN
Feel free to start reviewing this in depth. I still haven't covered 100% of the ...
4 years, 4 months ago (2016-08-23 00:26:24 UTC) #2
RobertoCN
PTAL, Ethan, this CL is quite big and we need help reviewing it. If you ...
4 years, 3 months ago (2016-09-07 00:33:25 UTC) #3
prasadv
Review not yet completed, some initial comments and clarification. https://codereview.chromium.org/2247373002/diff/70001/scripts/slave/recipe_modules/auto_bisect/api.py File scripts/slave/recipe_modules/auto_bisect/api.py (right): https://codereview.chromium.org/2247373002/diff/70001/scripts/slave/recipe_modules/auto_bisect/api.py#newcode132 scripts/slave/recipe_modules/auto_bisect/api.py:132: ...
4 years, 3 months ago (2016-09-09 18:52:31 UTC) #5
eakuefner
https://codereview.chromium.org/2247373002/diff/80001/scripts/slave/recipe_modules/auto_bisect/api.py File scripts/slave/recipe_modules/auto_bisect/api.py (right): https://codereview.chromium.org/2247373002/diff/80001/scripts/slave/recipe_modules/auto_bisect/api.py#newcode104 scripts/slave/recipe_modules/auto_bisect/api.py:104: def gsutil_file_exists(self, path, **kwargs): I don't like this idea ...
4 years, 3 months ago (2016-09-09 20:35:42 UTC) #6
eakuefner
4 years, 3 months ago (2016-09-09 20:35:43 UTC) #7
RobertoCN
https://codereview.chromium.org/2247373002/diff/70001/scripts/slave/recipe_modules/auto_bisect/api.py File scripts/slave/recipe_modules/auto_bisect/api.py (right): https://codereview.chromium.org/2247373002/diff/70001/scripts/slave/recipe_modules/auto_bisect/api.py#newcode132 scripts/slave/recipe_modules/auto_bisect/api.py:132: self.resource('fetch_revision_info.py'), On 2016/09/09 18:52:30, prasadv wrote: > Can we ...
4 years, 3 months ago (2016-09-13 22:11:41 UTC) #8
dtu
Here's my comments for test_api.py! Still have yet to look at the other files in ...
4 years, 3 months ago (2016-09-13 23:57:28 UTC) #9
RobertoCN
Addressed comments. https://codereview.chromium.org/2247373002/diff/90001/scripts/slave/recipe_modules/auto_bisect/bisector.py File scripts/slave/recipe_modules/auto_bisect/bisector.py (right): https://codereview.chromium.org/2247373002/diff/90001/scripts/slave/recipe_modules/auto_bisect/bisector.py#newcode258 scripts/slave/recipe_modules/auto_bisect/bisector.py:258: step_test_data=lambda: self.api._test_data['revision_list'][depot] On 2016/09/13 23:57:27, dtu wrote: ...
4 years, 3 months ago (2016-09-21 22:22:49 UTC) #10
RobertoCN
Addressed comments.
4 years, 3 months ago (2016-09-21 22:22:54 UTC) #11
RobertoCN
Dave, PTAL this is the CL we discussed yesterday.
4 years, 2 months ago (2016-10-12 17:49:08 UTC) #12
RobertoCN
Dave, PTAL this is the CL we discussed yesterday.
4 years, 2 months ago (2016-10-12 17:49:08 UTC) #13
RobertoCN
Guys, can I get a Rubberstamp LGTM? This is going to staging and not to ...
4 years, 2 months ago (2016-10-17 18:26:20 UTC) #15
sullivan
lgtm
4 years, 2 months ago (2016-10-17 18:27:18 UTC) #16
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/2247373002/130001
4 years, 2 months ago (2016-10-17 19:32:56 UTC) #19
commit-bot: I haz the power
Try jobs failed on following builders: Build Presubmit on luci.infra.try (JOB_FAILED, https://luci-milo.appspot.com/swarming/task/31ecf39e55684910)
4 years, 2 months ago (2016-10-17 20:08:57 UTC) #21
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/2247373002/160001
4 years, 2 months ago (2016-10-18 15:39:54 UTC) #32
commit-bot: I haz the power
Try jobs failed on following builders: Build Presubmit on luci.infra.try (JOB_FAILED, https://luci-milo.appspot.com/swarming/task/31f14db8f514da10)
4 years, 2 months ago (2016-10-18 16:22:07 UTC) #34
RobertoCN
Sergey, we need an owners' stamp for chromium_tests/steps.py Thanks!
4 years, 2 months ago (2016-10-18 18:09:49 UTC) #36
Sergey Berezin
RS LGTM for chromium_tests/steps.py
4 years, 2 months ago (2016-10-18 18:24:34 UTC) #37
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/2247373002/160001
4 years, 2 months ago (2016-10-18 18:47:14 UTC) #41
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/2247373002/160001
4 years, 2 months ago (2016-10-18 18:49:14 UTC) #43
commit-bot: I haz the power
4 years, 2 months ago (2016-10-18 18:59:56 UTC) #45
Message was sent while issue was closed.
Committed patchset #14 (id:160001) as
https://chromium.googlesource.com/chromium/tools/build/+/3d68b83bc307ab0f5522...

Powered by Google App Engine
This is Rietveld 408576698