New issue
Advanced search Search tips
Note: Color blocks (like or ) mean that a user may not be available. Tooltip shows the reason.

Issue 680729 link

Starred by 3 users

Issue metadata

Status: Fixed
Owner:
Closed: May 2017
Cc:
Components:
EstimatedDays: ----
NextAction: ----
OS: Linux
Pri: 1
Type: Bug



Sign in to add a comment

Add wrapper script for collect step in swarming in recipes

Project Member Reported by martiniss@chromium.org, Jan 12 2017

Issue description

From "Layout Tests on Swarming Update (and swarming Perf tests)":

"
In order to make those last two things work, what we want to do is modify the "collect" part of the swarming recipe_module 
so that we can configure swarming.py to collect the results and then, optionally, we can run a user (src-side)-specified script
to postprocess the data. The script can do whatever it likes, including uploading files, but is responsible for putting
the test results into the right format expected by the recipe module. In addition, we should be able to pass back some sort
of structured data from the optional script to the step results to indicate additional links and text that we should add to the step
result.
"

 
Labels: -Pri-3 Pri-2
I should be able to start on this this week.
Owner: dpranke@chromium.org
I'm really busy right now. dpranke@ said he would take this.
Labels: -Pri-2 Pri-1
Cc: mcgreevy@chromium.org tansell@chromium.org
Owner: jbudorick@chromium.org
jbudorick@ ended up being the one working on this. A CL landed and was reverted ...
Status: Started (was: Assigned)
https://chromium-review.googlesource.com/c/441391/ was the reland. It added support for this for isolated_scripts. To use it, you can add a merge section to the isolated_script's test definition in the relevant JSON file, e.g.

"isolated_scripts": [
  {
    "name": "my_isolated_script_test",
    ...
    "merge": {
      # this path is relative to chromium/src
      "script": "//path/to/script.py",

      # args are optional
      "args": [
        "--additional-arg", "additional-arg-value",
      ],
    },
    ...
  },
  ...
]

A merge script is expected to accept the following:
 --build-properties <build properties JSON>
 -o <merged JSON result path>
 [shard JSON [shard JSON...]

Note that the path specified w/ -o is an output file. The merge script should generate this from the provided shard JSONs.

I'm working on a follow-up change to add support for this to gtests and generic swarming tasks.
Is the result_merger.py used here at all?

I made it possible to run that file directly, so you can do a;

 result_merger.py 0/output.json 1/output.json 2/output.json

and it will print the combination on stdout. We should probably make it support the -o / --build-properties arguments?

If we could just run this script afterwards, I think it would mean we could move all result merging code out of recipies?
I've also gotten 90% of the way through rewriting result_merger.py to be a more generic "json merger" that is able to merge generic json files (with a few custom hooks for the more complex keys).

Ahh, I missed you had added the "standard_isolated_script_merge.py"
Project Member

Comment 10 by bugdroid1@chromium.org, Mar 21 2017

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/tools/build/+/232ecb4e8e9a3175db1c14449dca0230ae01b80c

commit 232ecb4e8e9a3175db1c14449dca0230ae01b80c
Author: John Budorick <jbudorick@chromium.org>
Date: Tue Mar 21 00:03:51 2017

Switch to an explicit swarming.summary placeholder instead of json.output.

This CL:
 - adds api.swarming.summary, a thin wrapper around api.json.output.
 - makes api.swarming use this placeholder with swarming.py's
   --task-summary-json argument when collecting results.
 - adds a swarming test api and moves the existing canned summary output
   to it.

Using an explicit placeholder...
 - is more clear for clients attempting to access the summary from the
   step_result.
 - should be more clear for users on the build page.
 - allows use of a JSON placeholder for other purposes without involving
   named placeholders. (This will be more relevant in
   https://chromium-review.googlesource.com/c/448948/, a follow-on CL
   that adds a JSON placeholder for merged test results.)

BUG=680729

Change-Id: I45f186c75d36c3ee4acff95e29dd2717473da9fd
Reviewed-on: https://chromium-review.googlesource.com/449962
Commit-Queue: John Budorick <jbudorick@chromium.org>
Reviewed-by: Marc-Antoine Ruel <maruel@chromium.org>
Reviewed-by: Dirk Pranke <dpranke@chromium.org>

[add] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/skia/swarm_trigger.expected/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-MSAN.json
[add] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/skia/swarm_trigger.expected/Housekeeper-PerCommit.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/dynamic_swarmed_gtest_mac_gpu.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_win32_debug.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/v8.expected/full_client_v8_V8_Linux64_bisect_tester_swarming.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipe_modules/ios/example.expected/expired.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTLinuxASan_tester.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Mac10_10.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/findit/chromium/test.expected/all_test_failed.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipe_modules/swarming/example.expected/isolated_script_expired_new.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/v8.expected/full_tryserver_v8_v8_linux_rel_ng_triggered_triggered_by_cq.json
[add] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/skia/ct_skps.expected/CT_DM_10k_SKPs_Trybot.json
[add] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/skia/ct_skps.expected/CT_CPU_BENCH_10k_SKPs.json
[add] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/skia/ct_skps.expected/CT_GPU_BENCH_1k_SKPs.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/full_chromium_perf_Mac_Air_10_11_Perf.json
[add] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/skia/swarm_trigger.expected/legacy_win_toolchain.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Win7_Release__AMD_.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_mac64_release.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/full_chromium_linux_Linux_Tests__dbg__1_.json
[add] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/skia/swarm_trigger.expected/Test-Android-GCC-NVIDIA_Shield-GPU-TegraX1-Arm64-Debug-Vulkan.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/full_chromium_perf_Win_7_Intel_GPU_Perf.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTLinuxLLD_tester.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Fake_Linux_Release__NVIDIA_.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipe_modules/swarming/example.expected/isolated_script_expired_old.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTWin64_dbg__tester.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/full_client_skia_Linux_Tests_Trybot.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Win7_Release__NVIDIA_.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux_tsan2.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipe_modules/ios/api.py
[add] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/skia/ct_skps.expected/CT_DM_10k_SKPs.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_android_dbg.json
[add] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/skia/swarm_trigger.expected/Build-Ubuntu-GCC-x86_64-Release-RemoteRun.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/full_client_skia_Win7_Tests__1__Trybot.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/full_chromium_win_Win_7_Tests_x64__1_.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_ubsan_vptr.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_invalid_format_isolated_script_test.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipe_modules/swarming/example.expected/isolated_large_outdir.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/full_chromium_memory_Mac_ASan_64_Tests__1_.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTMac_tester.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/full_chromium_perf_Mac_Pro_10_11_Perf.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Optional_Linux_Release__NVIDIA_.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/full_chromium_memory_Linux_TSan_Tests.json
[add] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/skia/swarm_trigger.expected/Test-Win8-MSVC-ShuttleA-GPU-HD7770-x86_64-Release.json
[add] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/skia/swarm_trigger.expected/legacy_android_sdk.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/isolated_script_test_custom_merge_script.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_android32__m_nexus5x_.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/swarming/staging.expected/one_fails.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_isolated_chartjson_test_harness_failure.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipe_modules/swarming/example.expected/swarming_timeout_old.json
[add] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/skia/swarm_trigger.expected/Build-Mac-Clang-x86_64-Release.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_fyi_win__swarming_.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_android_experimental.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/findit/chromium/test.expected/swarming_tests.json
[add] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/skia/ct_skps.expected/CT_IMG_DECODE_10k_SKPs.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/ios/unified_builder_tester.expected/basic.json
[add] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/skia/ct_skps.expected/CT_GPU_BENCH_10k_SKPs.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/findit/chromium/test.expected/findit_culprit_in_first_sub_range.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/full_chromium_chromiumos_Linux_ChromiumOS_Ozone_Tests__1_.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_passed_isolated_script_perf_test.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/full_chromium_perf_Linux_Perf.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_passed_isolated_script_perf_test_empty.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/findit/chromium/flake.py
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/full_chromium_win_Win7_Tests__1_.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipe_modules/swarming/example.expected/show_isolated_out_in_collect_step.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_win64_debug.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux_ubsan_vptr.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_fyi_linux__swarming_.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/v8.expected/full_client_v8_V8_Random_Deopt_Fuzzer___debug.json
[add] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/skia/swarm_trigger.expected/Test-Win8-MSVC-ShuttleB-CPU-AVX2-x86_64-Release.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Win7__dbg_.json
[add] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/skia/ct_skps.expected/CT_DM_1m_SKPs_slave3_failure.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium_trybot.expected/swarming_test_failure.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTLinuxUBSanVptr_tester.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/full_chromium_mac_Mac10_11_Tests.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Mac10_9.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/v8.expected/full_client_v8_V8_Linux64.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/v8.expected/full_client_v8_V8_Fuzzer.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTMacASan_tester.json
[add] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/skia/swarm_trigger.expected/Test-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-Valgrind.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/v8.expected/full_tryserver_v8_v8_linux_rel_ng_triggered_triggered_by_ts.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.py
[add] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipe_modules/swarming/state.py
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipe_modules/skia_swarming/api.py
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_isolated_chartjson_test_missing_all_shards.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipe_modules/swarming/example.expected/isolated_script_with_custom_merge.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_asan.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/full_client_skia_Win7_Tests__1_.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/full_client_skia_Mac10_9_Tests_Trybot.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipe_modules/swarming/example.expected/basic.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_android32__m_nexus5x__dbg_.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Mac_Retina_Debug__AMD_.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipe_modules/swarming/api.py
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Mac10_11__dbg_.json
[add] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/skia/swarm_trigger.expected/Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-Trybot.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Linux_Release__NVIDIA_.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Mac_Retina_Release__AMD_.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_memcheck.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/v8.expected/full_tryserver_v8_v8_linux_rel_ng_triggered_failures.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipe_modules/ios/example.expected/timed_out.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinClngLLDdbg_tester.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Mac_Retina_Release__NVIDIA_.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipe_modules/swarming/example.expected/swarming_expired_new.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/v8.expected/full_client_v8_V8_Linux_swarming_collect_failure.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/v8.expected/full_tryserver_v8_v8_linux_rel_ng_triggered.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/full_chromium_memory_full_Linux_ChromeOS_MSan_Tests.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Linux_Release__NVIDIA_.json
[add] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/skia/swarm_trigger.expected/legacy_skimage_version.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/v8.expected/full_client_v8_V8_Linux.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipe_modules/swarming/example.expected/swarming_expired_old.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/v8.expected/full_client_v8_V8_Deopt_Fuzzer.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/full_chromium_win_Win7__32__Tests.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/ios/try.expected/basic.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_win32_release.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipe_modules/swarming/example.expected/show_shards_in_collect_step.json
[add] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/skia/swarm_trigger.expected/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/dynamic_swarmed_failed_isolated_script_test.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Mac10_12.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/full_chromium_perf_Win_7_Perf.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Optional_Mac_Retina_Release__AMD_.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinClngLLD64dbg_tester.json
[add] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/skia/swarm_trigger.expected/No_downloaded_SKP_VERSION.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/full_chromium_win_Win7_Tests__dbg__1_.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_fyi_win32_asan__swarming_.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Mac_Debug__Intel_.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/findit/chromium/test.expected/use_analyze_set_to_False_for_non_linear_try_job.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipe_modules/ios/example.expected/no_exit_code.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/isolated_script_test_custom_merge_script_with_args.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux_ubsan.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Mac_Release__Intel_.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_android64__m_nexus5x__dbg_.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_tsan_v2.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipe_modules/ios/example.expected/test_failure.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/full_chromium_linux_Linux_Tests.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/full_chromium_mac_Mac10_9_Tests.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/full_chromium_win_Win10_Tests_x64.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinClang64_dll__tester.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux_dbg.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/findit/chromium/test.expected/unaffected_test_skipped_by_analyze.json
[add] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/skia/swarm_trigger.expected/recipe_with_gerrit_patch.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipe_modules/ios/example.expected/basic.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipe_modules/swarming/example.expected/isolated_script_timeout_old.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTWin_dbg__tester.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_win_x64_rel.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/findit/chromium/test.expected/use_build_parameter_for_tests.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Mac10_11.json
[add] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/skia/swarm_trigger.expected/Test-Android-GCC-Nexus7v2-GPU-Tegra3-Arm7-Release.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/findit/chromium/test.py
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/full_chromium_perf_fyi_Win_10_Low_End_Perf_Tests.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_ubsan.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_passed_isolated_script_perf_test_disabled.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_win_x64_dbg.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinClang64_dbg__tester.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_msan.json
[modify] https://crrev.com/232ecb4e8e9a3175db1c14449dca0230ae01b80c/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_win64_release.json
[modify] https://crrev.com/232ecb4e8e9a3175
Project Member

Comment 11 by bugdroid1@chromium.org, Mar 21 2017

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/tools/build/+/843d18d4c63d75f0eb68a2df934baab02c0bf6c4

commit 843d18d4c63d75f0eb68a2df934baab02c0bf6c4
Author: Tim 'mithro' Ansell <tansell@chromium.org>
Date: Tue Mar 21 03:23:29 2017

swarming: Improve collect_isolated_script_task error handling.

Previously it would die if there was an exception processing the
task_output_dir (for example if the collect stage failed and didn't
create the task_output_dir).

Output logging information about unexpected cases like missing expected
output files.

Also add the ability to actually look at the logging statements.

BUG=680729,524758

Change-Id: I9663296ae1357ec74f4a00f63434a9bceae13534
Reviewed-on: https://chromium-review.googlesource.com/455617
Commit-Queue: Tim 'mithro' Ansell <tansell@chromium.org>
Reviewed-by: Michael McGreevy <mcgreevy@chromium.org>

[modify] https://crrev.com/843d18d4c63d75f0eb68a2df934baab02c0bf6c4/scripts/slave/recipe_modules/swarming/resources/collect_isolated_script_task.py

Project Member

Comment 12 by bugdroid1@chromium.org, Mar 21 2017

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/tools/build/+/6067fa67669785c0fc3172dcb80dd0de2d452d19

commit 6067fa67669785c0fc3172dcb80dd0de2d452d19
Author: Tim 'mithro' Ansell <tansell@chromium.org>
Date: Tue Mar 21 08:42:48 2017

swarming: collect_isolated_script_task changes.

Making current working directory of the collect script be 'start_dir'.

Import the current properties into the task_build properties. This means
things like buildnumber, buildername, etc are available. (Previously it
only included git revisions.)

BUG=680729,524758

Change-Id: Iff0e78a626ff646440a6d1270000d21702447938
Reviewed-on: https://chromium-review.googlesource.com/456963
Commit-Queue: Tim 'mithro' Ansell <tansell@chromium.org>
Reviewed-by: Michael McGreevy <mcgreevy@chromium.org>

[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux64_release.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_win32_release.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_isolated_chartjson_test_missing_all_shards.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipe_modules/swarming/example.expected/isolated_script_with_custom_merge.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux32_dbg.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux64_debug_forced.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_win_x64_dbg.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux64_debug_failing_test.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipe_modules/swarming/api.py
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipe_modules/swarming/example.expected/isolated_script_expired_new.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux_ubsan_vptr.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_isolated_chartjson_test_missing_shard.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_mac64_debug.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux_rel.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux32_rel.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_mac64_release.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_memcheck.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux_memcheck.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_mac_asan.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/chromium.expected/dynamic_swarmed_isolated_script_test_mac_gpu.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/chromium.expected/isolated_script_test_custom_merge_script_with_args.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipe_modules/swarming/example.expected/isolated_script_expired_old.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux32_debug.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_ubsan.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_mac_rel.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/chromium.expected/dynamic_swarmed_passed_isolated_script_test.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_mac_asan.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_win64_debug.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/chromium.expected/dynamic_swarmed_passed_isolated_script_test_with_swarming_failure.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_win32_debug.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_invalid_format_isolated_script_test.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipe_modules/swarming/example.expected/isolated_script_timeout_new.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux_msan.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_ubsan_vptr.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipe_modules/swarming/example.expected/isolated_large_outdir.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/chromium.expected/dynamic_swarmed_isolated_script_test_win_non_gpu.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/chromium.expected/dynamic_swarmed_failed_isolated_script_test.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_win_rel.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_passed_isolated_script_perf_test_empty.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_fyi_win__swarming_.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/chromium.expected/isolated_script_test_custom_merge_script.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux32_release.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_isolated_chartjson_test_harness_failure.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_isolated_chartjson_test_disabled.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux_ubsan.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_passed_isolated_script_test.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux_dbg.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_tsan_v2.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_isolated_script_test_harness_failure.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_win_dbg.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/chromium.expected/dynamic_swarmed_isolated_script_test_linux_gpu.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_passed_isolated_script_perf_test.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_mac_dbg.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_fyi_win32_asan__swarming_.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/chromium.expected/dynamic_swarmed_passed_with_bad_retcode_isolated_script_test.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/chromium_trybot.expected/dynamic_isolated_script_test_with_args_on_trybot.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipe_modules/swarming/example.expected/isolated_script_timeout_old.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux_tsan2.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_passed_isolated_script_perf_test_no_chartjson.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_win_x64_rel.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_fyi_linux__swarming_.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_failed_isolated_script_test.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux64_debug.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_passed_isolated_script_perf_test_disabled.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_fyi_mac__swarming_.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_isolated_script_test_missing_shard.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_asan.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/chromium.expected/dynamic_swarmed_isolated_script_test_win_gpu.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_msan.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_win64_release.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/chromium.expected/isolated_script_test_custom_results_handler.json
[modify] https://crrev.com/6067fa67669785c0fc3172dcb80dd0de2d452d19/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux_asan.json

Project Member

Comment 13 by bugdroid1@chromium.org, Mar 31 2017

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/tools/build/+/328305ad806f3bc88fe190f754463ee007d0c040

commit 328305ad806f3bc88fe190f754463ee007d0c040
Author: John Budorick <jbudorick@chromium.org>
Date: Fri Mar 31 16:32:41 2017

Implement a generic postprocess/merge hook for swarming tasks.

This CL generalizes the merge script hook added for isolated_script tests
run via swarming in https://chromium-review.googlesource.com/c/441391/ to
all tests run via swarming. This will allow us to run custom src/-side
postprocessing as desired.

BUG=680729

Change-Id: Ia0b7909551753eaa5a391816d7a9d41ab1bf9232
Reviewed-on: https://chromium-review.googlesource.com/448948
Commit-Queue: John Budorick <jbudorick@chromium.org>
Reviewed-by: Marc-Antoine Ruel <maruel@chromium.org>
Reviewed-by: Dirk Pranke <dpranke@chromium.org>

[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/dynamic_swarmed_gtest_mac_gpu.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/v8.expected/full_tryserver_v8_v8_linux_rel_ng_triggered_triggered_by_ts.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipe_modules/ios/example.expected/expired.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTLinuxASan_tester.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Mac10_10.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipe_modules/test_utils/test_api.py
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipe_modules/swarming/example.expected/isolated_script_expired_new.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/v8.expected/full_tryserver_v8_v8_linux_rel_ng_triggered_triggered_by_cq.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_mac64_debug.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_asan.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_chromium_perf_Mac_Air_10_11_Perf.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Win7_Release__AMD_.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_mac64_release.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_chromium_linux_Linux_Tests__dbg__1_.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_chromium_perf_Win_7_Intel_GPU_Perf.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTLinuxLLD_tester.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Fake_Linux_Release__NVIDIA_.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipe_modules/swarming/example.expected/isolated_script_expired_old.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTWin64_dbg__tester.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_client_skia_Linux_Tests_Trybot.json
[add] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipe_modules/swarming/example.expected/gtest_with_outputs_ref.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux_tsan2.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Optional_Win7_Release__NVIDIA_.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_android_dbg.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_win32_debug.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_client_skia_Win7_Tests__1__Trybot.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_ubsan_vptr.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipe_modules/swarming/example.expected/isolated_large_outdir.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_chromium_memory_Mac_ASan_64_Tests__1_.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTMac_tester.json
[rename] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipe_modules/swarming/resources/collect_task.py
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Optional_Linux_Release__NVIDIA_.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Linux_Debug__NVIDIA_.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/isolated_script_test_custom_merge_script.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_android32__m_nexus5x_.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/swarming/staging.expected/one_fails.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_isolated_chartjson_test_harness_failure.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipe_modules/swarming/example.expected/swarming_timeout_old.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Win7_Debug__NVIDIA_.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_fyi_win__swarming_.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_android_experimental.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/findit/chromium/test.expected/swarming_tests.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/v8.py
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/findit/chromium/test.expected/all_test_failed.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/ios/unified_builder_tester.expected/basic.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/findit/chromium/test.expected/findit_culprit_in_first_sub_range.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_chromium_chromiumos_Linux_ChromiumOS_Ozone_Tests__1_.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_passed_isolated_script_perf_test.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_chromium_perf_Linux_Perf.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_passed_isolated_script_perf_test_empty.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_fyi_win32_asan__swarming_.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_chromium_win_Win7_Tests__1_.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipe_modules/swarming/example.expected/show_isolated_out_in_collect_step.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_win64_debug.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux_ubsan_vptr.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_fyi_linux__swarming_.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/v8.expected/full_client_v8_V8_Random_Deopt_Fuzzer___debug.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Win7__dbg_.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium_trybot.expected/swarming_test_failure.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTLinuxUBSanVptr_tester.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_chromium_mac_Mac10_11_Tests.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Mac10_9.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/v8.expected/full_client_v8_V8_Linux64.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/v8.expected/full_client_v8_V8_Fuzzer.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTMacASan_tester.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_win32_release.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.py
[rename] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipe_modules/swarming/resources/standard_gtest_merge.py
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_isolated_chartjson_test_missing_all_shards.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipe_modules/swarming/example.expected/isolated_script_with_custom_merge.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_client_skia_Win7_Tests__1_.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_client_skia_Mac10_9_Tests_Trybot.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipe_modules/swarming/example.expected/basic.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_android32__m_nexus5x__dbg_.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Mac_Retina_Debug__AMD_.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipe_modules/swarming/api.py
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Mac10_11__dbg_.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux64_release.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Linux_Release__NVIDIA_.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Mac_Retina_Release__AMD_.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_memcheck.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/v8.expected/full_tryserver_v8_v8_linux_rel_ng_triggered_failures.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipe_modules/ios/example.expected/timed_out.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinClngLLDdbg_tester.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Mac_Retina_Release__NVIDIA_.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipe_modules/swarming/example.expected/swarming_expired_new.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/v8.expected/full_client_v8_V8_Linux_swarming_collect_failure.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/v8.expected/full_tryserver_v8_v8_linux_rel_ng_triggered.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_chromium_memory_full_Linux_ChromeOS_MSan_Tests.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Linux_Release__NVIDIA_.json
[rename] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipe_modules/swarming/tests/standard_gtest_merge_test.py
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/v8.expected/full_client_v8_V8_Linux.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/webrtc/standalone.py
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipe_modules/swarming/example.expected/swarming_expired_old.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/v8.expected/full_client_v8_V8_Deopt_Fuzzer.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_chromium_win_Win7__32__Tests.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipe_modules/swarming/resources/standard_isolated_script_merge.py
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/ios/try.expected/basic.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipe_modules/swarming/example.expected/show_shards_in_collect_step.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/dynamic_swarmed_failed_isolated_script_test.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Mac10_12.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_chromium_perf_Win_7_Perf.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Optional_Mac_Retina_Release__AMD_.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinClngLLD64dbg_tester.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_chromium_win_Win7_Tests__dbg__1_.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Mac_Debug__Intel_.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/findit/chromium/test.expected/use_analyze_set_to_False_for_non_linear_try_job.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipe_modules/ios/example.expected/no_exit_code.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/isolated_script_test_custom_merge_script_with_args.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux_ubsan.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Mac_Release__Intel_.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_android64__m_nexus5x__dbg_.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_tsan_v2.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipe_modules/ios/example.expected/test_failure.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_chromium_linux_Linux_Tests.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_chromium_mac_Mac10_9_Tests.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_chromium_win_Win10_Tests_x64.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinClang64_dll__tester.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux_dbg.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/findit/chromium/test.expected/unaffected_test_skipped_by_analyze.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipe_modules/ios/example.expected/basic.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipe_modules/swarming/example.expected/isolated_script_timeout_old.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTWin_dbg__tester.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_win_x64_rel.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/findit/chromium/test.expected/use_build_parameter_for_tests.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Win7_Release__NVIDIA_.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_chromium_perf_fyi_Win_10_Low_End_Perf_Tests.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_ubsan.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_passed_isolated_script_perf_test_disabled.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_win_x64_dbg.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinClang64_dbg__tester.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_msan.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_win64_release.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_fyi_android_asan__swarming_.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/isolated_script_test_custom_results_handler.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/v8.expected/full_tryserver_v8_v8_linux_rel_ng_triggered_slow_tests.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Win7.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Optional_Mac_Release__Intel_.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_chromium_perf_Mac_10_11_Perf.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_chromium_win_Win_7_Tests_x64__1_.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux_memcheck.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_chromium_perf_Win_10_Perf.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/findit/chromium/test.expected/findit_culprit_in_last_sub_range.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_chromium_perf_Win_7_x64_Perf.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_isolated_chartjson_test_missing_shard.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_corrupt_json_isolated_script_test.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_chromium_perf_Mac_10_12_Perf.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_chromium_linux_Linux_Tests__dbg__1__32_.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium_trybot.py
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinClang_dbg__tester.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux32_dbg.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_chromium_perf_Mac_Retina_Perf.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/dynamic_swarmed_isolated_script_test_mac_gpu.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/chromium.expected/full_chromium_perf_Win_7_Nvidia_GPU_Perf.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipe_modules/swarming/example.expected/trybot.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipes/v8.expected/full_tryserver_v8_v8_linux_rel_ng_triggered_flakes.json
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipe_modules/ios/example.py
[modify] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/sla
Project Member

Comment 14 by bugdroid1@chromium.org, Mar 31 2017

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/tools/build/+/236fd0e4571b168b58446704d8c223dd476431ed

commit 236fd0e4571b168b58446704d8c223dd476431ed
Author: John Budorick <jbudorick@chromium.org>
Date: Fri Mar 31 17:05:33 2017

Revert "Implement a generic postprocess/merge hook for swarming tasks."

This reverts commit 328305ad806f3bc88fe190f754463ee007d0c040.

Reason for revert: :(

Original change's description:
> Implement a generic postprocess/merge hook for swarming tasks.
> 
> This CL generalizes the merge script hook added for isolated_script tests
> run via swarming in https://chromium-review.googlesource.com/c/441391/ to
> all tests run via swarming. This will allow us to run custom src/-side
> postprocessing as desired.
> 
> BUG=680729
> 
> Change-Id: Ia0b7909551753eaa5a391816d7a9d41ab1bf9232
> Reviewed-on: https://chromium-review.googlesource.com/448948
> Commit-Queue: John Budorick <jbudorick@chromium.org>
> Reviewed-by: Marc-Antoine Ruel <maruel@chromium.org>
> Reviewed-by: Dirk Pranke <dpranke@chromium.org>
> 

TBR=maruel@chromium.org,phajdan.jr@chromium.org,dpranke@chromium.org,tansell@chromium.org,jbudorick@chromium.org,nednguyen@google.com,hzl@chromium.org,chromium-reviews@chromium.org
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=680729

Change-Id: Iead0f2cd584994f362a9441446cd66732004a36d
Reviewed-on: https://chromium-review.googlesource.com/465226
Reviewed-by: John Budorick <jbudorick@chromium.org>
Commit-Queue: John Budorick <jbudorick@chromium.org>

[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/dynamic_swarmed_gtest_mac_gpu.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/v8.expected/full_tryserver_v8_v8_linux_rel_ng_triggered_triggered_by_ts.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipe_modules/ios/example.expected/expired.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTLinuxASan_tester.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Mac10_10.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipe_modules/test_utils/test_api.py
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipe_modules/swarming/example.expected/isolated_script_expired_new.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/v8.expected/full_tryserver_v8_v8_linux_rel_ng_triggered_triggered_by_cq.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_mac64_debug.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_asan.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_chromium_perf_Mac_Air_10_11_Perf.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Win7_Release__AMD_.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_mac64_release.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_chromium_linux_Linux_Tests__dbg__1_.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_chromium_perf_Win_7_Intel_GPU_Perf.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTLinuxLLD_tester.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Fake_Linux_Release__NVIDIA_.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipe_modules/swarming/example.expected/isolated_script_expired_old.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTWin64_dbg__tester.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_client_skia_Linux_Tests_Trybot.json
[delete] https://crrev.com/328305ad806f3bc88fe190f754463ee007d0c040/scripts/slave/recipe_modules/swarming/example.expected/gtest_with_outputs_ref.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux_tsan2.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Optional_Win7_Release__NVIDIA_.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_android_dbg.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_win32_debug.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/webrtc/standalone.py
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_client_skia_Win7_Tests__1__Trybot.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_ubsan_vptr.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipe_modules/swarming/example.expected/isolated_large_outdir.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTMac_tester.json
[rename] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipe_modules/swarming/resources/collect_isolated_script_task.py
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Optional_Linux_Release__NVIDIA_.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Linux_Debug__NVIDIA_.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/isolated_script_test_custom_merge_script.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_android32__m_nexus5x_.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/swarming/staging.expected/one_fails.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_isolated_chartjson_test_harness_failure.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipe_modules/swarming/example.expected/swarming_timeout_old.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_fyi_win__swarming_.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_android_experimental.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/findit/chromium/test.expected/swarming_tests.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/v8.py
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/findit/chromium/test.expected/all_test_failed.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/ios/unified_builder_tester.expected/basic.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/findit/chromium/test.expected/findit_culprit_in_first_sub_range.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_chromium_chromiumos_Linux_ChromiumOS_Ozone_Tests__1_.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_passed_isolated_script_perf_test.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_chromium_perf_Linux_Perf.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_passed_isolated_script_perf_test_empty.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_fyi_win32_asan__swarming_.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_chromium_win_Win7_Tests__1_.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipe_modules/swarming/example.expected/show_isolated_out_in_collect_step.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_win64_debug.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux_ubsan_vptr.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_fyi_linux__swarming_.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/v8.expected/full_client_v8_V8_Random_Deopt_Fuzzer___debug.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_passed_isolated_script_perf_test_disabled.json
[rename] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipe_modules/swarming/tests/collect_gtest_task_test.py
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium_trybot.expected/swarming_test_failure.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTLinuxUBSanVptr_tester.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_chromium_mac_Mac10_11_Tests.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Mac10_9.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/v8.expected/full_client_v8_V8_Linux64.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/v8.expected/full_client_v8_V8_Fuzzer.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTMacASan_tester.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_win32_release.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.py
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_chromium_memory_Mac_ASan_64_Tests__1_.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_isolated_chartjson_test_missing_all_shards.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipe_modules/swarming/example.expected/isolated_script_with_custom_merge.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_client_skia_Win7_Tests__1_.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_client_skia_Mac10_9_Tests_Trybot.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipe_modules/swarming/example.expected/basic.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_android32__m_nexus5x__dbg_.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Mac_Retina_Debug__AMD_.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipe_modules/swarming/api.py
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Mac10_11__dbg_.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux64_release.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Linux_Release__NVIDIA_.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Mac_Retina_Release__AMD_.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_memcheck.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/v8.expected/full_tryserver_v8_v8_linux_rel_ng_triggered_failures.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipe_modules/ios/example.expected/timed_out.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinClngLLDdbg_tester.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Mac_Retina_Release__NVIDIA_.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipe_modules/swarming/example.expected/swarming_expired_new.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/v8.expected/full_client_v8_V8_Linux_swarming_collect_failure.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Win7__dbg_.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_chromium_memory_full_Linux_ChromeOS_MSan_Tests.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Linux_Release__NVIDIA_.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/v8.expected/full_client_v8_V8_Linux.json
[rename] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipe_modules/swarming/resources/collect_gtest_task.py
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipe_modules/swarming/example.expected/swarming_expired_old.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/v8.expected/full_client_v8_V8_Deopt_Fuzzer.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_chromium_win_Win7__32__Tests.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipe_modules/swarming/resources/standard_isolated_script_merge.py
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/ios/try.expected/basic.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipe_modules/swarming/example.expected/show_shards_in_collect_step.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/dynamic_swarmed_failed_isolated_script_test.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Mac10_12.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_chromium_perf_Win_7_Perf.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Optional_Mac_Retina_Release__AMD_.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinClngLLD64dbg_tester.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_chromium_win_Win7_Tests__dbg__1_.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Mac_Debug__Intel_.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/findit/chromium/test.expected/use_analyze_set_to_False_for_non_linear_try_job.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipe_modules/ios/example.expected/no_exit_code.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/isolated_script_test_custom_merge_script_with_args.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux_ubsan.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Mac_Release__Intel_.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_android64__m_nexus5x__dbg_.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_tsan_v2.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipe_modules/ios/example.expected/test_failure.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_chromium_linux_Linux_Tests.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_chromium_mac_Mac10_9_Tests.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_chromium_win_Win10_Tests_x64.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinClang64_dll__tester.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux_dbg.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/findit/chromium/test.expected/unaffected_test_skipped_by_analyze.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipe_modules/ios/example.expected/basic.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipe_modules/swarming/example.expected/isolated_script_timeout_old.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTWin_dbg__tester.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_win_x64_rel.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/findit/chromium/test.expected/use_build_parameter_for_tests.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Win7_Release__NVIDIA_.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_chromium_perf_fyi_Win_10_Low_End_Perf_Tests.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_ubsan.json
[rename] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipe_modules/swarming/tests/collect_isolated_script_task_test.py
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_win_x64_dbg.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinClang64_dbg__tester.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_msan.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_win64_release.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_fyi_android_asan__swarming_.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/isolated_script_test_custom_results_handler.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/v8.expected/full_tryserver_v8_v8_linux_rel_ng_triggered_slow_tests.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Win7.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Optional_Mac_Release__Intel_.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_chromium_perf_Mac_10_11_Perf.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_chromium_win_Win_7_Tests_x64__1_.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux_memcheck.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_chromium_perf_Win_10_Perf.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/findit/chromium/test.expected/findit_culprit_in_last_sub_range.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_chromium_perf_Win_7_x64_Perf.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_isolated_chartjson_test_missing_shard.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_corrupt_json_isolated_script_test.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_chromium_perf_Mac_10_12_Perf.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_chromium_linux_Linux_Tests__dbg__1__32_.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium_trybot.py
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinClang_dbg__tester.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux32_dbg.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/full_chromium_perf_Mac_Retina_Perf.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromium.expected/dynamic_swarmed_isolated_script_test_mac_gpu.json
[modify] https://crrev.com/236fd0e4571b168b58446704d8c223dd476431ed/scripts/slave/recipes/chromi
Project Member

Comment 15 by bugdroid1@chromium.org, Apr 6 2017

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/tools/build/+/7f5a5538a09ab7be09b792c7621642a048e75628

commit 7f5a5538a09ab7be09b792c7621642a048e75628
Author: John Budorick <jbudorick@chromium.org>
Date: Thu Apr 06 14:54:31 2017

Implement a generic postprocess/merge hook for swarming tasks. (RELAND)

Bug:680729

Change-Id: Ie5c65e89034131a29b341282bc6f8b3f39eb78c8
Reviewed-on: https://chromium-review.googlesource.com/465068
Commit-Queue: John Budorick <jbudorick@chromium.org>
Reviewed-by: Dirk Pranke <dpranke@chromium.org>
Reviewed-by: Marc-Antoine Ruel <maruel@chromium.org>

[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/dynamic_swarmed_gtest_mac_gpu.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/v8.expected/full_tryserver_v8_v8_linux_rel_ng_triggered_triggered_by_ts.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipe_modules/ios/example.expected/expired.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTLinuxASan_tester.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Mac10_10.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipe_modules/test_utils/test_api.py
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipe_modules/swarming/example.expected/isolated_script_expired_new.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/v8.expected/full_tryserver_v8_v8_linux_rel_ng_triggered_triggered_by_cq.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_mac64_debug.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_asan.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_chromium_perf_Mac_Air_10_11_Perf.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Win7_Release__AMD_.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_mac64_release.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_chromium_linux_Linux_Tests__dbg__1_.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_chromium_perf_Win_7_Intel_GPU_Perf.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTLinuxLLD_tester.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Fake_Linux_Release__NVIDIA_.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipe_modules/swarming/example.expected/isolated_script_expired_old.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTWin64_dbg__tester.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_client_skia_Linux_Tests_Trybot.json
[add] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipe_modules/swarming/example.expected/gtest_with_outputs_ref.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux_tsan2.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Optional_Win7_Release__NVIDIA_.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_android_dbg.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_win32_debug.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_client_skia_Win7_Tests__1__Trybot.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_ubsan_vptr.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipe_modules/swarming/example.expected/isolated_large_outdir.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium_trybot.expected/swarmed_layout_tests_too_many_failures_for_retcode.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_chromium_memory_Mac_ASan_64_Tests__1_.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTMac_tester.json
[rename] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipe_modules/swarming/resources/collect_task.py
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Optional_Linux_Release__NVIDIA_.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Linux_Debug__NVIDIA_.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/isolated_script_test_custom_merge_script.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_android32__m_nexus5x_.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/swarming/staging.expected/one_fails.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_isolated_chartjson_test_harness_failure.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipe_modules/swarming/example.expected/swarming_timeout_old.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Win7_Debug__NVIDIA_.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_fyi_win__swarming_.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_android_experimental.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/findit/chromium/test.expected/swarming_tests.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/v8.py
[add] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipe_modules/swarming/resources/noop_merge.py
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/findit/chromium/test.expected/all_test_failed.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/ios/unified_builder_tester.expected/basic.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/findit/chromium/test.expected/findit_culprit_in_first_sub_range.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_chromium_chromiumos_Linux_ChromiumOS_Ozone_Tests__1_.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium_trybot.expected/swarmed_webkit_tests_interrupted.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_passed_isolated_script_perf_test.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_chromium_perf_Linux_Perf.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium_trybot.expected/dynamic_isolated_script_test_on_trybot_passing.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_passed_isolated_script_perf_test_empty.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_fyi_win32_asan__swarming_.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_chromium_win_Win7_Tests__1_.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipe_modules/swarming/example.expected/show_isolated_out_in_collect_step.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_win64_debug.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux_ubsan_vptr.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_fyi_linux__swarming_.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/v8.expected/full_client_v8_V8_Random_Deopt_Fuzzer___debug.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Win7__dbg_.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium_trybot.expected/swarming_test_failure.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTLinuxUBSanVptr_tester.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_chromium_mac_Mac10_11_Tests.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Mac10_9.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/v8.expected/full_client_v8_V8_Linux64.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/v8.expected/full_client_v8_V8_Fuzzer.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTMacASan_tester.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_win32_release.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.py
[rename] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipe_modules/swarming/resources/standard_gtest_merge.py
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_isolated_chartjson_test_missing_all_shards.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipe_modules/swarming/example.expected/isolated_script_with_custom_merge.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_client_skia_Win7_Tests__1_.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_client_skia_Mac10_9_Tests_Trybot.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipe_modules/swarming/example.expected/basic.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_android32__m_nexus5x__dbg_.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Mac_Retina_Debug__AMD_.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipe_modules/swarming/api.py
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium_trybot.expected/swarmed_webkit_tests_minimal_pass_continues.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Mac10_11__dbg_.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux64_release.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/v8.expected/full_tryserver_v8_v8_linux64_rel_ng_triggered.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Linux_Release__NVIDIA_.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Mac_Retina_Release__AMD_.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_memcheck.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/v8.expected/full_tryserver_v8_v8_linux_rel_ng_triggered_failures.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipe_modules/ios/example.expected/timed_out.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinClngLLDdbg_tester.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Mac_Retina_Release__NVIDIA_.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipe_modules/swarming/example.expected/swarming_expired_new.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/v8.expected/full_client_v8_V8_Linux_swarming_collect_failure.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/v8.expected/full_tryserver_v8_v8_linux_rel_ng_triggered.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_chromium_memory_full_Linux_ChromeOS_MSan_Tests.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Linux_Release__NVIDIA_.json
[rename] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipe_modules/swarming/tests/standard_gtest_merge_test.py
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/v8.expected/full_client_v8_V8_Linux.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/webrtc/standalone.py
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipe_modules/swarming/example.expected/swarming_expired_old.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/v8.expected/full_client_v8_V8_Deopt_Fuzzer.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_chromium_win_Win7__32__Tests.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipe_modules/swarming/resources/standard_isolated_script_merge.py
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/ios/try.expected/basic.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipe_modules/swarming/example.expected/show_shards_in_collect_step.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/dynamic_swarmed_failed_isolated_script_test.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Mac10_12.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_chromium_perf_Win_7_Perf.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Optional_Mac_Retina_Release__AMD_.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinClngLLD64dbg_tester.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_chromium_win_Win7_Tests__dbg__1_.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Mac_Debug__Intel_.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/findit/chromium/test.expected/use_analyze_set_to_False_for_non_linear_try_job.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipe_modules/ios/example.expected/no_exit_code.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/isolated_script_test_custom_merge_script_with_args.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux_ubsan.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Mac_Release__Intel_.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_android64__m_nexus5x__dbg_.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_tsan_v2.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipe_modules/ios/example.expected/test_failure.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_chromium_linux_Linux_Tests.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_chromium_mac_Mac10_9_Tests.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_chromium_win_Win10_Tests_x64.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinClang64_dll__tester.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux_dbg.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/findit/chromium/test.expected/unaffected_test_skipped_by_analyze.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipe_modules/ios/example.expected/basic.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipe_modules/swarming/example.expected/isolated_script_timeout_old.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTWin_dbg__tester.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_win_x64_rel.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/findit/chromium/test.expected/all_test_passed.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Win7_Release__NVIDIA_.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_chromium_perf_fyi_Win_10_Low_End_Perf_Tests.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_ubsan.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_passed_isolated_script_perf_test_disabled.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_win_x64_dbg.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinClang64_dbg__tester.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_msan.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_win64_release.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_fyi_android_asan__swarming_.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/isolated_script_test_custom_results_handler.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/v8.expected/full_tryserver_v8_v8_linux_rel_ng_triggered_slow_tests.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Win7.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Optional_Mac_Release__Intel_.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_chromium_perf_Mac_10_11_Perf.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_chromium_win_Win_7_Tests_x64__1_.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux_memcheck.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_chromium_perf_Win_10_Perf.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/findit/chromium/test.expected/findit_culprit_in_last_sub_range.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_chromium_perf_Win_7_x64_Perf.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_isolated_chartjson_test_missing_shard.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_corrupt_json_isolated_script_test.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_chromium_perf_Mac_10_12_Perf.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_chromium_linux_Linux_Tests__dbg__1__32_.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium_trybot.py
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinClang_dbg__tester.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux32_dbg.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/full_chromium_perf_Mac_Retina_Perf.json
[modify] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipes/chromium.expected/dynam
Project Member

Comment 16 by bugdroid1@chromium.org, Apr 6 2017

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/tools/build/+/217f111af09ddea4d351a371503fd02d722eae4e

commit 217f111af09ddea4d351a371503fd02d722eae4e
Author: Michael Achenbach <machenbach@chromium.org>
Date: Thu Apr 06 15:15:14 2017

Revert "Implement a generic postprocess/merge hook for swarming tasks. (RELAND)"

This reverts commit 7f5a5538a09ab7be09b792c7621642a048e75628.

Reason for revert: Still breaks V8:
https://build.chromium.org/p/client.v8/builders/V8%20Linux/builds/17384
https://build.chromium.org/p/client.v8/builders/V8%20Deopt%20Fuzzer/builds/18041

Original change's description:
> Implement a generic postprocess/merge hook for swarming tasks. (RELAND)
> 
> Bug:680729
> 
> Change-Id: Ie5c65e89034131a29b341282bc6f8b3f39eb78c8
> Reviewed-on: https://chromium-review.googlesource.com/465068
> Commit-Queue: John Budorick <jbudorick@chromium.org>
> Reviewed-by: Dirk Pranke <dpranke@chromium.org>
> Reviewed-by: Marc-Antoine Ruel <maruel@chromium.org>
> 

TBR=maruel@chromium.org,dpranke@chromium.org,jbudorick@chromium.org,hzl@chromium.org,tansell@chromium.org,chromium-reviews@chromium.org
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true

Change-Id: I39a19ee0147eb171edd05798282f4ab2c691be5d
Reviewed-on: https://chromium-review.googlesource.com/469652
Reviewed-by: Michael Achenbach <machenbach@chromium.org>
Commit-Queue: Michael Achenbach <machenbach@chromium.org>

[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/dynamic_swarmed_gtest_mac_gpu.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/v8.expected/full_tryserver_v8_v8_linux_rel_ng_triggered_triggered_by_ts.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipe_modules/ios/example.expected/expired.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTLinuxASan_tester.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Mac10_10.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipe_modules/test_utils/test_api.py
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipe_modules/swarming/example.expected/isolated_script_expired_new.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/v8.expected/full_tryserver_v8_v8_linux_rel_ng_triggered_triggered_by_cq.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_mac64_debug.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_asan.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/full_chromium_perf_Mac_Air_10_11_Perf.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Win7_Release__AMD_.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_mac64_release.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/full_chromium_linux_Linux_Tests__dbg__1_.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/full_chromium_perf_Win_7_Intel_GPU_Perf.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTLinuxLLD_tester.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Fake_Linux_Release__NVIDIA_.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipe_modules/swarming/example.expected/isolated_script_expired_old.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTWin64_dbg__tester.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/full_client_skia_Linux_Tests_Trybot.json
[delete] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipe_modules/swarming/example.expected/gtest_with_outputs_ref.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux_tsan2.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Optional_Win7_Release__NVIDIA_.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_android_dbg.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_win32_debug.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/webrtc/standalone.py
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/full_client_skia_Win7_Tests__1__Trybot.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_ubsan_vptr.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipe_modules/swarming/example.expected/isolated_large_outdir.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium_trybot.expected/swarmed_layout_tests_too_many_failures_for_retcode.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTMac_tester.json
[rename] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipe_modules/swarming/resources/collect_isolated_script_task.py
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Optional_Linux_Release__NVIDIA_.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Linux_Debug__NVIDIA_.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/isolated_script_test_custom_merge_script.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_android32__m_nexus5x_.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/swarming/staging.expected/one_fails.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_isolated_chartjson_test_harness_failure.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipe_modules/swarming/example.expected/swarming_timeout_old.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_fyi_win__swarming_.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_android_experimental.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/findit/chromium/test.expected/swarming_tests.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/v8.py
[delete] https://crrev.com/7f5a5538a09ab7be09b792c7621642a048e75628/scripts/slave/recipe_modules/swarming/resources/noop_merge.py
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/findit/chromium/test.expected/all_test_failed.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/ios/unified_builder_tester.expected/basic.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/findit/chromium/test.expected/findit_culprit_in_first_sub_range.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/full_chromium_chromiumos_Linux_ChromiumOS_Ozone_Tests__1_.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium_trybot.expected/swarmed_webkit_tests_interrupted.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_passed_isolated_script_perf_test.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/full_chromium_perf_Linux_Perf.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium_trybot.expected/dynamic_isolated_script_test_on_trybot_passing.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_passed_isolated_script_perf_test_empty.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_fyi_win32_asan__swarming_.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/full_chromium_win_Win7_Tests__1_.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipe_modules/swarming/example.expected/show_isolated_out_in_collect_step.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_win64_debug.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux_ubsan_vptr.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_fyi_linux__swarming_.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/v8.expected/full_client_v8_V8_Random_Deopt_Fuzzer___debug.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_passed_isolated_script_perf_test_disabled.json
[rename] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipe_modules/swarming/tests/collect_gtest_task_test.py
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium_trybot.expected/swarming_test_failure.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTLinuxUBSanVptr_tester.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/full_chromium_mac_Mac10_11_Tests.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Mac10_9.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/v8.expected/full_client_v8_V8_Linux64.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/v8.expected/full_client_v8_V8_Fuzzer.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTMacASan_tester.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_win32_release.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.py
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/full_chromium_memory_Mac_ASan_64_Tests__1_.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_isolated_chartjson_test_missing_all_shards.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipe_modules/swarming/example.expected/isolated_script_with_custom_merge.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/full_client_skia_Win7_Tests__1_.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/full_client_skia_Mac10_9_Tests_Trybot.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipe_modules/swarming/example.expected/basic.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_android32__m_nexus5x__dbg_.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Mac_Retina_Debug__AMD_.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipe_modules/swarming/api.py
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium_trybot.expected/swarmed_webkit_tests_minimal_pass_continues.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Mac10_11__dbg_.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux64_release.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/v8.expected/full_tryserver_v8_v8_linux64_rel_ng_triggered.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Linux_Release__NVIDIA_.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Mac_Retina_Release__AMD_.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_memcheck.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/v8.expected/full_tryserver_v8_v8_linux_rel_ng_triggered_failures.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipe_modules/ios/example.expected/timed_out.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinClngLLDdbg_tester.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Mac_Retina_Release__NVIDIA_.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipe_modules/swarming/example.expected/swarming_expired_new.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/v8.expected/full_client_v8_V8_Linux_swarming_collect_failure.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Win7__dbg_.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/full_chromium_memory_full_Linux_ChromeOS_MSan_Tests.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Linux_Release__NVIDIA_.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/v8.expected/full_client_v8_V8_Linux.json
[rename] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipe_modules/swarming/resources/collect_gtest_task.py
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipe_modules/swarming/example.expected/swarming_expired_old.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/v8.expected/full_client_v8_V8_Deopt_Fuzzer.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/full_chromium_win_Win7__32__Tests.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipe_modules/swarming/resources/standard_isolated_script_merge.py
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/ios/try.expected/basic.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipe_modules/swarming/example.expected/show_shards_in_collect_step.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/dynamic_swarmed_failed_isolated_script_test.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Mac10_12.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/full_chromium_perf_Win_7_Perf.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Optional_Mac_Retina_Release__AMD_.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinClngLLD64dbg_tester.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/full_chromium_win_Win7_Tests__dbg__1_.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Mac_Debug__Intel_.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/findit/chromium/test.expected/use_analyze_set_to_False_for_non_linear_try_job.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipe_modules/ios/example.expected/no_exit_code.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/isolated_script_test_custom_merge_script_with_args.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux_ubsan.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Mac_Release__Intel_.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_android64__m_nexus5x__dbg_.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_tsan_v2.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipe_modules/ios/example.expected/test_failure.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/full_chromium_linux_Linux_Tests.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/full_chromium_mac_Mac10_9_Tests.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/full_chromium_win_Win10_Tests_x64.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinClang64_dll__tester.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux_dbg.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/findit/chromium/test.expected/unaffected_test_skipped_by_analyze.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipe_modules/ios/example.expected/basic.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipe_modules/swarming/example.expected/isolated_script_timeout_old.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTWin_dbg__tester.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_win_x64_rel.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/findit/chromium/test.expected/all_test_passed.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Win7_Release__NVIDIA_.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/full_chromium_perf_fyi_Win_10_Low_End_Perf_Tests.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_ubsan.json
[rename] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipe_modules/swarming/tests/collect_isolated_script_task_test.py
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_win_x64_dbg.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinClang64_dbg__tester.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_msan.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_win64_release.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_fyi_android_asan__swarming_.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/isolated_script_test_custom_results_handler.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/v8.expected/full_tryserver_v8_v8_linux_rel_ng_triggered_slow_tests.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Win7.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Optional_Mac_Release__Intel_.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/full_chromium_perf_Mac_10_11_Perf.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/full_chromium_win_Win_7_Tests_x64__1_.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux_memcheck.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/full_chromium_perf_Win_10_Perf.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/findit/chromium/test.expected/findit_culprit_in_last_sub_range.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/full_chromium_perf_Win_7_x64_Perf.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_isolated_chartjson_test_missing_shard.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_corrupt_json_isolated_script_test.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/full_chromium_perf_Mac_10_12_Perf.json
[modify] https://crrev.com/217f111af09ddea4d351a371503fd02d722eae4e/scripts/slave/recipes/chromium.expected/full_chromium_linux_Linux_Tests__dbg__1__32_.json
[modi
Project Member

Comment 17 by bugdroid1@chromium.org, Apr 7 2017

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/tools/build/+/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d

commit be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d
Author: John Budorick <jbudorick@chromium.org>
Date: Fri Apr 07 01:54:56 2017

Implement a generic postprocess/merge hook for swarming tasks. (RELAND 2)

Bug:680729

Change-Id: I520612134f9e40649967a30c396aab6c07b5c881
Reviewed-on: https://chromium-review.googlesource.com/469986
Commit-Queue: John Budorick <jbudorick@chromium.org>
Reviewed-by: Dirk Pranke <dpranke@chromium.org>
Reviewed-by: Marc-Antoine Ruel <maruel@chromium.org>

[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/dynamic_swarmed_gtest_mac_gpu.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/v8.expected/full_tryserver_v8_v8_linux_rel_ng_triggered_triggered_by_ts.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipe_modules/ios/example.expected/expired.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTLinuxASan_tester.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Mac10_10.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipe_modules/test_utils/test_api.py
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipe_modules/swarming/example.expected/isolated_script_expired_new.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/v8.expected/full_tryserver_v8_v8_linux_rel_ng_triggered_triggered_by_cq.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_mac64_debug.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_asan.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_chromium_perf_Mac_Air_10_11_Perf.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Win7_Release__AMD_.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_mac64_release.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_chromium_linux_Linux_Tests__dbg__1_.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_chromium_perf_Win_7_Intel_GPU_Perf.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTLinuxLLD_tester.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Fake_Linux_Release__NVIDIA_.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipe_modules/swarming/example.expected/isolated_script_expired_old.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTWin64_dbg__tester.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_client_skia_Linux_Tests_Trybot.json
[add] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipe_modules/swarming/example.expected/gtest_with_outputs_ref.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux_tsan2.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Optional_Win7_Release__NVIDIA_.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_android_dbg.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_win32_debug.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_client_skia_Win7_Tests__1__Trybot.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_ubsan_vptr.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipe_modules/swarming/example.expected/isolated_large_outdir.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium_trybot.expected/swarmed_layout_tests_too_many_failures_for_retcode.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_chromium_memory_Mac_ASan_64_Tests__1_.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTMac_tester.json
[rename] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipe_modules/swarming/resources/collect_task.py
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Optional_Linux_Release__NVIDIA_.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Linux_Debug__NVIDIA_.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/isolated_script_test_custom_merge_script.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_android32__m_nexus5x_.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/swarming/staging.expected/one_fails.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_isolated_chartjson_test_harness_failure.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipe_modules/swarming/example.expected/swarming_timeout_old.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Win7_Debug__NVIDIA_.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_fyi_win__swarming_.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_android_experimental.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/findit/chromium/test.expected/swarming_tests.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/v8.py
[add] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipe_modules/swarming/resources/noop_merge.py
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/findit/chromium/test.expected/all_test_failed.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/ios/unified_builder_tester.expected/basic.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/findit/chromium/test.expected/findit_culprit_in_first_sub_range.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_chromium_chromiumos_Linux_ChromiumOS_Ozone_Tests__1_.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium_trybot.expected/swarmed_webkit_tests_interrupted.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_passed_isolated_script_perf_test.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_chromium_perf_Linux_Perf.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium_trybot.expected/dynamic_isolated_script_test_on_trybot_passing.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_passed_isolated_script_perf_test_empty.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_fyi_win32_asan__swarming_.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_chromium_win_Win7_Tests__1_.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipe_modules/swarming/example.expected/show_isolated_out_in_collect_step.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_win64_debug.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux_ubsan_vptr.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_fyi_linux__swarming_.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/v8.expected/full_client_v8_V8_Random_Deopt_Fuzzer___debug.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Win7__dbg_.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium_trybot.expected/swarming_test_failure.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTLinuxUBSanVptr_tester.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_chromium_mac_Mac10_11_Tests.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Mac10_9.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/v8.expected/full_client_v8_V8_Linux64.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/v8.expected/full_client_v8_V8_Fuzzer.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTMacASan_tester.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_win32_release.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.py
[rename] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipe_modules/swarming/resources/standard_gtest_merge.py
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_isolated_chartjson_test_missing_all_shards.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipe_modules/swarming/example.expected/isolated_script_with_custom_merge.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_client_skia_Win7_Tests__1_.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_client_skia_Mac10_9_Tests_Trybot.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipe_modules/swarming/example.expected/basic.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_android32__m_nexus5x__dbg_.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Mac_Retina_Debug__AMD_.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipe_modules/swarming/api.py
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium_trybot.expected/swarmed_webkit_tests_minimal_pass_continues.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Mac10_11__dbg_.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux64_release.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/v8.expected/full_tryserver_v8_v8_linux64_rel_ng_triggered.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Linux_Release__NVIDIA_.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Mac_Retina_Release__AMD_.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_memcheck.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/v8.expected/full_tryserver_v8_v8_linux_rel_ng_triggered_failures.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipe_modules/ios/example.expected/timed_out.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinClngLLDdbg_tester.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Mac_Retina_Release__NVIDIA_.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipe_modules/swarming/example.expected/swarming_expired_new.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/v8.expected/full_client_v8_V8_Linux_swarming_collect_failure.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/v8.expected/full_tryserver_v8_v8_linux_rel_ng_triggered.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_chromium_memory_full_Linux_ChromeOS_MSan_Tests.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Linux_Release__NVIDIA_.json
[rename] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipe_modules/swarming/tests/standard_gtest_merge_test.py
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/v8.expected/full_client_v8_V8_Linux.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/webrtc/standalone.py
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipe_modules/swarming/example.expected/swarming_expired_old.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/v8.expected/full_client_v8_V8_Deopt_Fuzzer.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_chromium_win_Win7__32__Tests.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipe_modules/swarming/resources/standard_isolated_script_merge.py
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/ios/try.expected/basic.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipe_modules/swarming/example.expected/show_shards_in_collect_step.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/dynamic_swarmed_failed_isolated_script_test.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Mac10_12.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_chromium_perf_Win_7_Perf.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Optional_Mac_Retina_Release__AMD_.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinClngLLD64dbg_tester.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_chromium_win_Win7_Tests__dbg__1_.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Mac_Debug__Intel_.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/findit/chromium/test.expected/use_analyze_set_to_False_for_non_linear_try_job.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipe_modules/ios/example.expected/no_exit_code.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/isolated_script_test_custom_merge_script_with_args.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux_ubsan.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Mac_Release__Intel_.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_android64__m_nexus5x__dbg_.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_tsan_v2.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipe_modules/ios/example.expected/test_failure.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_chromium_linux_Linux_Tests.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_chromium_mac_Mac10_9_Tests.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_chromium_win_Win10_Tests_x64.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinClang64_dll__tester.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux_dbg.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/findit/chromium/test.expected/unaffected_test_skipped_by_analyze.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipe_modules/ios/example.expected/basic.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipe_modules/swarming/example.expected/isolated_script_timeout_old.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTWin_dbg__tester.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_win_x64_rel.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/findit/chromium/test.expected/all_test_passed.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Win7_Release__NVIDIA_.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_chromium_perf_fyi_Win_10_Low_End_Perf_Tests.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_ubsan.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_passed_isolated_script_perf_test_disabled.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_win_x64_dbg.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinClang64_dbg__tester.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_msan.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_win64_release.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_fyi_android_asan__swarming_.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/isolated_script_test_custom_results_handler.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/v8.expected/full_tryserver_v8_v8_linux_rel_ng_triggered_slow_tests.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Win7.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Optional_Mac_Release__Intel_.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_chromium_perf_Mac_10_11_Perf.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_chromium_win_Win_7_Tests_x64__1_.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux_memcheck.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_chromium_perf_Win_10_Perf.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/findit/chromium/test.expected/findit_culprit_in_last_sub_range.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_chromium_perf_Win_7_x64_Perf.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_isolated_chartjson_test_missing_shard.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_corrupt_json_isolated_script_test.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_chromium_perf_Mac_10_12_Perf.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_chromium_linux_Linux_Tests__dbg__1__32_.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium_trybot.py
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinClang_dbg__tester.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux32_dbg.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/full_chromium_perf_Mac_Retina_Perf.json
[modify] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipes/chromium.expected/dyn
Project Member

Comment 18 by bugdroid1@chromium.org, Apr 7 2017

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/tools/build/+/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf

commit 6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf
Author: John Budorick <jbudorick@chromium.org>
Date: Fri Apr 07 03:19:01 2017

Revert "Implement a generic postprocess/merge hook for swarming tasks. (RELAND 2)"

This reverts commit be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d.

Reason for revert: Works, but gtest failure annotations aren't present (e.g. no failure log for MemoryTracingTest.BrowserInitiatedDump in https://build.chromium.org/p/chromium.linux/builders/Linux%20Tests/builds/54463). Will fix and reland.

Original change's description:
> Implement a generic postprocess/merge hook for swarming tasks. (RELAND 2)
> 
> Bug:680729
> 
> Change-Id: I520612134f9e40649967a30c396aab6c07b5c881
> Reviewed-on: https://chromium-review.googlesource.com/469986
> Commit-Queue: John Budorick <jbudorick@chromium.org>
> Reviewed-by: Dirk Pranke <dpranke@chromium.org>
> Reviewed-by: Marc-Antoine Ruel <maruel@chromium.org>
> 

TBR=maruel@chromium.org,dpranke@chromium.org,jbudorick@chromium.org,machenbach@chromium.org,tansell@chromium.org,chromium-reviews@chromium.org
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true

Change-Id: I7671d02940530527a315f8d73570a28b80c13836
Reviewed-on: https://chromium-review.googlesource.com/471086
Reviewed-by: John Budorick <jbudorick@chromium.org>
Commit-Queue: John Budorick <jbudorick@chromium.org>

[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/dynamic_swarmed_gtest_mac_gpu.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/v8.expected/full_tryserver_v8_v8_linux_rel_ng_triggered_triggered_by_ts.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipe_modules/ios/example.expected/expired.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTLinuxASan_tester.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Mac10_10.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipe_modules/test_utils/test_api.py
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipe_modules/swarming/example.expected/isolated_script_expired_new.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/v8.expected/full_tryserver_v8_v8_linux_rel_ng_triggered_triggered_by_cq.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_mac64_debug.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_asan.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/full_chromium_perf_Mac_Air_10_11_Perf.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Win7_Release__AMD_.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_mac64_release.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/full_chromium_linux_Linux_Tests__dbg__1_.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/full_chromium_perf_Win_7_Intel_GPU_Perf.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTLinuxLLD_tester.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Fake_Linux_Release__NVIDIA_.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipe_modules/swarming/example.expected/isolated_script_expired_old.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTWin64_dbg__tester.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/full_client_skia_Linux_Tests_Trybot.json
[delete] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipe_modules/swarming/example.expected/gtest_with_outputs_ref.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux_tsan2.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Optional_Win7_Release__NVIDIA_.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_android_dbg.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_win32_debug.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/webrtc/standalone.py
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/full_client_skia_Win7_Tests__1__Trybot.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_ubsan_vptr.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipe_modules/swarming/example.expected/isolated_large_outdir.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium_trybot.expected/swarmed_layout_tests_too_many_failures_for_retcode.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTMac_tester.json
[rename] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipe_modules/swarming/resources/collect_isolated_script_task.py
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Optional_Linux_Release__NVIDIA_.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Linux_Debug__NVIDIA_.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/isolated_script_test_custom_merge_script.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_android32__m_nexus5x_.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/swarming/staging.expected/one_fails.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_isolated_chartjson_test_harness_failure.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipe_modules/swarming/example.expected/swarming_timeout_old.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_fyi_win__swarming_.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_android_experimental.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/findit/chromium/test.expected/swarming_tests.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/v8.py
[delete] https://crrev.com/be6a9a315bf6e9c0e45c0bbdd87c83b0a55ec28d/scripts/slave/recipe_modules/swarming/resources/noop_merge.py
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/findit/chromium/test.expected/all_test_failed.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/ios/unified_builder_tester.expected/basic.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/findit/chromium/test.expected/findit_culprit_in_first_sub_range.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/full_chromium_chromiumos_Linux_ChromiumOS_Ozone_Tests__1_.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium_trybot.expected/swarmed_webkit_tests_interrupted.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_passed_isolated_script_perf_test.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/full_chromium_perf_Linux_Perf.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium_trybot.expected/dynamic_isolated_script_test_on_trybot_passing.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_passed_isolated_script_perf_test_empty.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_fyi_win32_asan__swarming_.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/full_chromium_win_Win7_Tests__1_.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipe_modules/swarming/example.expected/show_isolated_out_in_collect_step.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_win64_debug.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux_ubsan_vptr.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_fyi_linux__swarming_.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/v8.expected/full_client_v8_V8_Random_Deopt_Fuzzer___debug.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_passed_isolated_script_perf_test_disabled.json
[rename] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipe_modules/swarming/tests/collect_gtest_task_test.py
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium_trybot.expected/swarming_test_failure.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTLinuxUBSanVptr_tester.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/full_chromium_mac_Mac10_11_Tests.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Mac10_9.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/v8.expected/full_client_v8_V8_Linux64.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/v8.expected/full_client_v8_V8_Fuzzer.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTMacASan_tester.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_win32_release.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.py
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/full_chromium_memory_Mac_ASan_64_Tests__1_.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_isolated_chartjson_test_missing_all_shards.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipe_modules/swarming/example.expected/isolated_script_with_custom_merge.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/full_client_skia_Win7_Tests__1_.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/full_client_skia_Mac10_9_Tests_Trybot.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipe_modules/swarming/example.expected/basic.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_android32__m_nexus5x__dbg_.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Mac_Retina_Debug__AMD_.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipe_modules/swarming/api.py
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium_trybot.expected/swarmed_webkit_tests_minimal_pass_continues.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Mac10_11__dbg_.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux64_release.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/v8.expected/full_tryserver_v8_v8_linux64_rel_ng_triggered.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Linux_Release__NVIDIA_.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Mac_Retina_Release__AMD_.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_memcheck.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/v8.expected/full_tryserver_v8_v8_linux_rel_ng_triggered_failures.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipe_modules/ios/example.expected/timed_out.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinClngLLDdbg_tester.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Mac_Retina_Release__NVIDIA_.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipe_modules/swarming/example.expected/swarming_expired_new.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/v8.expected/full_client_v8_V8_Linux_swarming_collect_failure.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Win7__dbg_.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/full_chromium_memory_full_Linux_ChromeOS_MSan_Tests.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Linux_Release__NVIDIA_.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/v8.expected/full_client_v8_V8_Linux.json
[rename] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipe_modules/swarming/resources/collect_gtest_task.py
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipe_modules/swarming/example.expected/swarming_expired_old.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/v8.expected/full_client_v8_V8_Deopt_Fuzzer.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/full_chromium_win_Win7__32__Tests.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipe_modules/swarming/resources/standard_isolated_script_merge.py
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/ios/try.expected/basic.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipe_modules/swarming/example.expected/show_shards_in_collect_step.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/dynamic_swarmed_failed_isolated_script_test.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Mac10_12.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/full_chromium_perf_Win_7_Perf.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Optional_Mac_Retina_Release__AMD_.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinClngLLD64dbg_tester.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/full_chromium_win_Win7_Tests__dbg__1_.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Mac_Debug__Intel_.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/findit/chromium/test.expected/use_analyze_set_to_False_for_non_linear_try_job.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipe_modules/ios/example.expected/no_exit_code.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/isolated_script_test_custom_merge_script_with_args.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux_ubsan.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Mac_Release__Intel_.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_android64__m_nexus5x__dbg_.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_tsan_v2.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipe_modules/ios/example.expected/test_failure.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/full_chromium_linux_Linux_Tests.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/full_chromium_mac_Mac10_9_Tests.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/full_chromium_win_Win10_Tests_x64.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinClang64_dll__tester.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux_dbg.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/findit/chromium/test.expected/unaffected_test_skipped_by_analyze.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipe_modules/ios/example.expected/basic.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipe_modules/swarming/example.expected/isolated_script_timeout_old.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTWin_dbg__tester.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_win_x64_rel.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/findit/chromium/test.expected/all_test_passed.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Win7_Release__NVIDIA_.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/full_chromium_perf_fyi_Win_10_Low_End_Perf_Tests.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_ubsan.json
[rename] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipe_modules/swarming/tests/collect_isolated_script_task_test.py
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_win_x64_dbg.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinClang64_dbg__tester.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_msan.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_win64_release.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_fyi_android_asan__swarming_.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/isolated_script_test_custom_results_handler.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/v8.expected/full_tryserver_v8_v8_linux_rel_ng_triggered_slow_tests.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Win7.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Optional_Mac_Release__Intel_.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/full_chromium_perf_Mac_10_11_Perf.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/full_chromium_win_Win_7_Tests_x64__1_.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux_memcheck.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/full_chromium_perf_Win_10_Perf.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/findit/chromium/test.expected/findit_culprit_in_last_sub_range.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/full_chromium_perf_Win_7_x64_Perf.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_isolated_chartjson_test_missing_shard.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_corrupt_json_isolated_script_test.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/full_chromium_perf_Mac_10_12_Perf.json
[modify] https://crrev.com/6e7474bc7cea2bfb3da3a5f7bbdb1f5ec8b55bcf/scripts/slave/recipes/chromium.expected/full_ch
Project Member

Comment 19 by bugdroid1@chromium.org, Apr 10 2017

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/tools/build/+/90711a4918e74aedb10d05fe9a4400d8007ba0d2

commit 90711a4918e74aedb10d05fe9a4400d8007ba0d2
Author: John Budorick <jbudorick@chromium.org>
Date: Mon Apr 10 14:36:44 2017

Move gtest log handling into api.test_utils.

Swarming had been adding gtest error logs to the build page outside
of the recipe, in its collect_gtest_task.py script, by directly
writing annotations. This CL moves gtest log handling into the
test_utils recipe_module so swarming can add the error logs at the
same time as the rest of its step result presentation logic.

Bug:680729

Change-Id: Iead9de8ab4f777ac9e35dea6b34410f91eb67024
Reviewed-on: https://chromium-review.googlesource.com/471246
Commit-Queue: John Budorick <jbudorick@chromium.org>
Reviewed-by: Dirk Pranke <dpranke@chromium.org>

[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/dynamic_swarmed_gtest_mac_gpu.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTLinuxASan_tester.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Mac10_10.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipe_modules/test_utils/test_api.py
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_perf_Mac_Air_10_11_Perf.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Win7_Release__AMD_.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_chromiumos_Linux_ChromiumOS_Tests__dbg__1_.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_linux_Linux_Tests__dbg__1_.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_perf_Win_7_Intel_GPU_Perf.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTLinuxLLD_tester.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Fake_Linux_Release__NVIDIA_.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTWin64_dbg__tester.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_client_skia_Linux_Tests_Trybot.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Win7_Release__NVIDIA_.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Optional_Win7_Release__NVIDIA_.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_android_fyi_Android_Tests__trial__dbg_.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_fyi_Chromium_Linux_Goma_Canary_LocalOutputCache.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTMac_tester.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_perf_Mac_Pro_10_11_Perf.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Optional_Linux_Release__NVIDIA_.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_memory_Linux_TSan_Tests.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinGoma_loc_.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_android32__m_nexus5x_.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_android_experimental.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/findit/chromium/test.expected/all_test_failed.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/findit/chromium/test.expected/findit_culprit_in_first_sub_range.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_chromiumos_Linux_ChromiumOS_Ozone_Tests__1_.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/dynamic_instrumentation_nodefault_test.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_client_skia_Win7_Tests__1__Trybot.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_fyi_Chromium_Mac_10_9_Goma_Canary__dbg__clobber_.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_win_Win7_Tests__1_.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_perf_Linux_Perf.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Win7__dbg_.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipe_modules/swarming/tests/collect_gtest_task_test.py
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium_trybot.expected/swarming_test_failure.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTLinuxUBSanVptr_tester.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/findit/chromium/test.expected/use_analyze_set_to_False_for_non_linear_try_job.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTMacASan_tester.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_fyi_android_asan__swarming_.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/swarming/staging.expected/one_fails.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_client_skia_Win7_Tests__1_.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_client_skia_Mac10_9_Tests_Trybot.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium_trybot.expected/full_tryserver_chromium_android_android_coverage.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_android32__m_nexus5x__dbg_.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Mac_Retina_Debug__AMD_.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipe_modules/swarming/api.py
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Mac10_11__dbg_.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Linux_Release__NVIDIA_.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Mac_Retina_Release__AMD_.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/dynamic_instrumentation_test_with_timeout_scale.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinAsan_tester.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinClngLLDdbg_tester.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Mac_Retina_Release__NVIDIA_.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/dynamic_gtest_asan_android.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_memory_full_Linux_ChromeOS_MSan_Tests.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Linux_Release__NVIDIA_.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipe_modules/swarming/resources/collect_gtest_task.py
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinGoma_dll_.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_win_Win7__32__Tests.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_fyi_Android_Remoting_Tests.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_memory_Mac_ASan_64_Tests__1_.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Mac10_12.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_perf_Win_7_Perf.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Optional_Mac_Retina_Release__AMD_.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinClngLLD64dbg_tester.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_perf_Mac_Retina_Perf.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_win_Win7_Tests__dbg__1_.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Mac_Debug__Intel_.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWin7Goma.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Mac_Release__Intel_.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_android64__m_nexus5x__dbg_.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_perf_Win_7_Nvidia_GPU_Perf.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_linux_Linux_Tests.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_mac_Mac10_9_Tests.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_win_Win10_Tests_x64.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinClang64_dll__tester.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/findit/chromium/test.expected/unaffected_test_skipped_by_analyze.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTWin_dbg__tester.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Mac10_11.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_perf_fyi_Win_10_Low_End_Perf_Tests.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_mac_Mac10_10_Tests.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Win10_Release__NVIDIA_.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinClang64_dbg__tester.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_fyi_Chromium_Linux_Goma_Canary__clobber_.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/findit/chromium/test.expected/findit_culprit_in_middle_sub_range.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_fyi_Android_Asan_Builder_Tests__dbg_.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Win7.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Optional_Mac_Release__Intel_.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_perf_Mac_10_11_Perf.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_win_Win_7_Tests_x64__1_.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_perf_Win_10_Perf.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/findit/chromium/test.expected/findit_culprit_in_last_sub_range.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_perf_Win_7_x64_Perf.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWin7Goma_dbg_.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_perf_Mac_10_12_Perf.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_linux_Linux_Tests__dbg__1__32_.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinClang_dbg__tester.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_fyi_Android_Coverage__dbg_.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_fyi_Chromium_Mac_10_9_Goma_Canary__dbg_.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/findit/chromium/test.expected/findit_consecutive_culprits.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_android_Android_WebView_M__dbg_.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTWin_dll__tester.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_android64__m_nexus5x_.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWin7Goma_clbr_.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinClangGoma.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/findit/chromium/test.expected/use_build_parameter_for_tests.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Mac_Retina_Debug__AMD_.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_fyi_Chromium_Linux_Precise_Goma_LinkTest.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/dynamic_junit_test.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_android_rel.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Win7_Debug__AMD_.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinAsan_dll__tester.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_perf_Win_Zenbook_Perf.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Win10_Debug__NVIDIA_.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_perf_fyi_Win_10_4_Core_Low_End_Perf_Tests.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_fyi_android__swarming_.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTWin_tester.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTLinux_tester.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_chromiumos_Linux_ChromiumOS_Tests__1_.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/findit/chromium/test.expected/all_test_passed.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_android_dbg.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Mac_Retina_Release__AMD_.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_fyi_Win7_Tests__ANGLE_.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinClang_shared__tester.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/findit/chromium/test.expected/findit_tests_multiple_culprits.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_fyi_Linux_remote_run_Tester.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/findit/chromium/flake.expected/flakiness_swarming_tests.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_memory_Linux_ASan_LSan_Tests__1_.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Win7_x64_Release__NVIDIA_.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_client_skia_Mac10_9_Tests.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/dynamic_gtest_android.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_perf_Win_10_High_DPI_Perf.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/findit/chromium/flake.expected/use_build_parameter_for_tests.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_fyi_Chromium_Mac_10_9_Goma_Canary__clobber_.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipe_modules/test_utils/util.py
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/dynamic_instrumentation_test.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Optional_Mac_Retina_Release__NVIDIA_.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium_trybot.expected/swarming_test_with_priority_expiration_and_timeout.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTWin64_dll__tester.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_mac_Mac10_9_Tests__dbg_.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_android_arm64_rel.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTWin64_tester.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinAsanCov_tester.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_memory_Linux_Chromium_OS_ASan_LSan_Tests__1_.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Optional_Win7_Release__AMD_.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinClang_tester.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinClangLLD_tester.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_perf_Win_8_Perf.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_client_skia_Linux_Tests.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Linux_Debug__NVIDIA_.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinGoma.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_fyi_Chromium_Mac_Goma_Canary__LocalOutputCache_.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_android_Android_WebView_L__dbg_.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe9a4400d8007ba0d2/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Mac10_9.json
[modify] https://crrev.com/90711a4918e74aedb10d05fe
Project Member

Comment 20 by bugdroid1@chromium.org, Apr 10 2017

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/tools/build/+/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db

commit 7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db
Author: John Budorick <jbudorick@chromium.org>
Date: Mon Apr 10 15:42:40 2017

Implement a generic postprocess/merge hook for swarming tasks. (RELAND 3)

Bug:680729

Change-Id: I44c39ebf7a8b6986300b4c38e2215388b2d54b74
Reviewed-on: https://chromium-review.googlesource.com/471027
Commit-Queue: John Budorick <jbudorick@chromium.org>
Reviewed-by: Dirk Pranke <dpranke@chromium.org>
Reviewed-by: Marc-Antoine Ruel <maruel@chromium.org>

[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/dynamic_swarmed_gtest_mac_gpu.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/v8.expected/full_tryserver_v8_v8_linux_rel_ng_triggered_triggered_by_ts.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipe_modules/ios/example.expected/expired.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTLinuxASan_tester.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Mac10_10.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipe_modules/test_utils/test_api.py
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipe_modules/swarming/example.expected/isolated_script_expired_new.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/v8.expected/full_tryserver_v8_v8_linux_rel_ng_triggered_triggered_by_cq.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_mac64_debug.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_asan.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/full_chromium_perf_Mac_Air_10_11_Perf.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Win7_Release__AMD_.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_mac64_release.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/full_chromium_linux_Linux_Tests__dbg__1_.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/full_chromium_perf_Win_7_Intel_GPU_Perf.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTLinuxLLD_tester.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Fake_Linux_Release__NVIDIA_.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipe_modules/swarming/example.expected/isolated_script_expired_old.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTWin64_dbg__tester.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/full_client_skia_Linux_Tests_Trybot.json
[add] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipe_modules/swarming/example.expected/gtest_with_outputs_ref.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux_tsan2.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Optional_Win7_Release__NVIDIA_.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_android_dbg.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_win32_debug.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/full_client_skia_Win7_Tests__1__Trybot.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_ubsan_vptr.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipe_modules/swarming/example.expected/isolated_large_outdir.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium_trybot.expected/swarmed_layout_tests_too_many_failures_for_retcode.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/full_chromium_memory_Mac_ASan_64_Tests__1_.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTMac_tester.json
[rename] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipe_modules/swarming/resources/collect_task.py
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Optional_Linux_Release__NVIDIA_.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Linux_Debug__NVIDIA_.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/isolated_script_test_custom_merge_script.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_android32__m_nexus5x_.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/swarming/staging.expected/one_fails.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_isolated_chartjson_test_harness_failure.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipe_modules/swarming/example.expected/swarming_timeout_old.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Win7_Debug__NVIDIA_.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_fyi_win__swarming_.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_android_experimental.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/findit/chromium/test.expected/swarming_tests.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/v8.py
[add] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipe_modules/swarming/resources/noop_merge.py
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/findit/chromium/test.expected/all_test_failed.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/ios/unified_builder_tester.expected/basic.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/findit/chromium/test.expected/findit_culprit_in_first_sub_range.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/full_chromium_chromiumos_Linux_ChromiumOS_Ozone_Tests__1_.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium_trybot.expected/swarmed_webkit_tests_interrupted.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_passed_isolated_script_perf_test.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/full_chromium_perf_Linux_Perf.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium_trybot.expected/dynamic_isolated_script_test_on_trybot_passing.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_passed_isolated_script_perf_test_empty.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_fyi_win32_asan__swarming_.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/full_chromium_win_Win7_Tests__1_.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipe_modules/swarming/example.expected/show_isolated_out_in_collect_step.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_win64_debug.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux_ubsan_vptr.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_fyi_linux__swarming_.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/v8.expected/full_client_v8_V8_Random_Deopt_Fuzzer___debug.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Win7__dbg_.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium_trybot.expected/swarming_test_failure.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTLinuxUBSanVptr_tester.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/full_chromium_mac_Mac10_11_Tests.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Mac10_9.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/v8.expected/full_client_v8_V8_Linux64.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/v8.expected/full_client_v8_V8_Fuzzer.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTMacASan_tester.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_win32_release.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.py
[rename] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipe_modules/swarming/resources/standard_gtest_merge.py
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_isolated_chartjson_test_missing_all_shards.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipe_modules/swarming/example.expected/isolated_script_with_custom_merge.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/full_client_skia_Win7_Tests__1_.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/dynamic_swarmed_isolated_script_perf_test_ignore_task_failure.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipe_modules/swarming/example.expected/basic.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_android32__m_nexus5x__dbg_.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Mac_Retina_Debug__AMD_.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipe_modules/swarming/api.py
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium_trybot.expected/swarmed_webkit_tests_minimal_pass_continues.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Mac10_11__dbg_.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux64_release.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/v8.expected/full_tryserver_v8_v8_linux64_rel_ng_triggered.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Linux_Release__NVIDIA_.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Mac_Retina_Release__AMD_.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_android64__m_nexus5x_.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_memcheck.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/v8.expected/full_tryserver_v8_v8_linux_rel_ng_triggered_failures.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipe_modules/ios/example.expected/timed_out.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinClngLLDdbg_tester.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Mac_Retina_Release__NVIDIA_.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipe_modules/swarming/example.expected/swarming_expired_new.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/v8.expected/full_client_v8_V8_Linux_swarming_collect_failure.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/v8.expected/full_tryserver_v8_v8_linux_rel_ng_triggered.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/full_chromium_memory_full_Linux_ChromeOS_MSan_Tests.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Linux_Release__NVIDIA_.json
[rename] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipe_modules/swarming/tests/standard_gtest_merge_test.py
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/v8.expected/full_client_v8_V8_Linux.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/webrtc/standalone.py
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipe_modules/swarming/example.expected/swarming_expired_old.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/v8.expected/full_client_v8_V8_Deopt_Fuzzer.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/full_chromium_win_Win7__32__Tests.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipe_modules/swarming/resources/standard_isolated_script_merge.py
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/ios/try.expected/basic.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipe_modules/swarming/example.expected/show_shards_in_collect_step.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/dynamic_swarmed_failed_isolated_script_test.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Mac10_12.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/full_chromium_perf_Win_7_Perf.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Optional_Mac_Retina_Release__AMD_.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinClngLLD64dbg_tester.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/full_chromium_win_Win7_Tests__dbg__1_.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Mac_Debug__Intel_.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/findit/chromium/test.expected/use_analyze_set_to_False_for_non_linear_try_job.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipe_modules/ios/example.expected/no_exit_code.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/isolated_script_test_custom_merge_script_with_args.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux_ubsan.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Mac_Release__Intel_.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_android64__m_nexus5x__dbg_.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_tsan_v2.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipe_modules/ios/example.expected/test_failure.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/full_chromium_linux_Linux_Tests.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/full_chromium_mac_Mac10_9_Tests.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/full_chromium_win_Win10_Tests_x64.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinClang64_dll__tester.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux_dbg.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/findit/chromium/test.expected/unaffected_test_skipped_by_analyze.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipe_modules/ios/example.expected/basic.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipe_modules/swarming/example.expected/isolated_script_timeout_old.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTWin_dbg__tester.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_win_x64_rel.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/findit/chromium/test.expected/all_test_passed.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Win7_Release__NVIDIA_.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/full_chromium_perf_fyi_Win_10_Low_End_Perf_Tests.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_ubsan.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_passed_isolated_script_perf_test_disabled.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_win_x64_dbg.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinClang64_dbg__tester.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_msan.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_win64_release.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_fyi_android_asan__swarming_.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/isolated_script_test_custom_results_handler.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/v8.expected/full_tryserver_v8_v8_linux_rel_ng_triggered_slow_tests.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Win7.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Optional_Mac_Release__Intel_.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/full_chromium_perf_Mac_10_11_Perf.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/full_chromium_win_Win_7_Tests_x64__1_.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux_memcheck.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/full_chromium_perf_Win_10_Perf.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/findit/chromium/test.expected/findit_culprit_in_last_sub_range.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/full_chromium_perf_Win_7_x64_Perf.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_isolated_chartjson_test_missing_shard.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_corrupt_json_isolated_script_test.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/full_chromium_perf_Mac_10_12_Perf.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/full_chromium_linux_Linux_Tests__dbg__1__32_.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium_trybot.py
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinClang_dbg__tester.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux32_dbg.json
[modify] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/s
Project Member

Comment 21 by bugdroid1@chromium.org, Apr 10 2017

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/tools/build/+/c926e68e032bf5201fdca5f01f1ab125f7233ddb

commit c926e68e032bf5201fdca5f01f1ab125f7233ddb
Author: John Budorick <jbudorick@chromium.org>
Date: Mon Apr 10 16:43:46 2017

Revert "Implement a generic postprocess/merge hook for swarming tasks. (RELAND 3)"

New record, yay

This reverts commit 7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db.

Reason for revert: gtest merge doesn't quite work w/ >10 .json files.

Original change's description:
> Implement a generic postprocess/merge hook for swarming tasks. (RELAND 3)
> 
> Bug:680729
> 
> Change-Id: I44c39ebf7a8b6986300b4c38e2215388b2d54b74
> Reviewed-on: https://chromium-review.googlesource.com/471027
> Commit-Queue: John Budorick <jbudorick@chromium.org>
> Reviewed-by: Dirk Pranke <dpranke@chromium.org>
> Reviewed-by: Marc-Antoine Ruel <maruel@chromium.org>
> 

TBR=maruel@chromium.org,dpranke@chromium.org,jbudorick@chromium.org,hzl@chromium.org,chromium-reviews@chromium.org
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true

Change-Id: I2fe3f6e5222f5bdd2154255a345877773c742c0a
Reviewed-on: https://chromium-review.googlesource.com/473327
Reviewed-by: John Budorick <jbudorick@chromium.org>
Commit-Queue: John Budorick <jbudorick@chromium.org>

[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/dynamic_swarmed_gtest_mac_gpu.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/v8.expected/full_tryserver_v8_v8_linux_rel_ng_triggered_triggered_by_ts.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipe_modules/ios/example.expected/expired.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTLinuxASan_tester.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Mac10_10.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipe_modules/test_utils/test_api.py
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipe_modules/swarming/example.expected/isolated_script_expired_new.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/v8.expected/full_tryserver_v8_v8_linux_rel_ng_triggered_triggered_by_cq.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_mac64_debug.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_asan.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/full_chromium_perf_Mac_Air_10_11_Perf.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Win7_Release__AMD_.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_mac64_release.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/full_chromium_linux_Linux_Tests__dbg__1_.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/full_chromium_perf_Win_7_Intel_GPU_Perf.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTLinuxLLD_tester.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Fake_Linux_Release__NVIDIA_.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipe_modules/swarming/example.expected/isolated_script_expired_old.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTWin64_dbg__tester.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/full_client_skia_Linux_Tests_Trybot.json
[delete] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipe_modules/swarming/example.expected/gtest_with_outputs_ref.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux_tsan2.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Optional_Win7_Release__NVIDIA_.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_android_dbg.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_win32_debug.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/webrtc/standalone.py
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/full_client_skia_Win7_Tests__1__Trybot.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_ubsan_vptr.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipe_modules/swarming/example.expected/isolated_large_outdir.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium_trybot.expected/swarmed_layout_tests_too_many_failures_for_retcode.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTMac_tester.json
[rename] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipe_modules/swarming/resources/collect_isolated_script_task.py
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Optional_Linux_Release__NVIDIA_.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Linux_Debug__NVIDIA_.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/isolated_script_test_custom_merge_script.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_android32__m_nexus5x_.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/swarming/staging.expected/one_fails.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_isolated_chartjson_test_harness_failure.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipe_modules/swarming/example.expected/swarming_timeout_old.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_fyi_win__swarming_.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_android_experimental.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/findit/chromium/test.expected/swarming_tests.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/v8.py
[delete] https://crrev.com/7f3bc2a4ae12dfc4e4c943ecee0bd24cc0c4c1db/scripts/slave/recipe_modules/swarming/resources/noop_merge.py
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/findit/chromium/test.expected/all_test_failed.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/ios/unified_builder_tester.expected/basic.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/findit/chromium/test.expected/findit_culprit_in_first_sub_range.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/full_chromium_chromiumos_Linux_ChromiumOS_Ozone_Tests__1_.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium_trybot.expected/swarmed_webkit_tests_interrupted.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_passed_isolated_script_perf_test.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/full_chromium_perf_Linux_Perf.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium_trybot.expected/dynamic_isolated_script_test_on_trybot_passing.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_passed_isolated_script_perf_test_empty.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_fyi_win32_asan__swarming_.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/full_chromium_win_Win7_Tests__1_.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipe_modules/swarming/example.expected/show_isolated_out_in_collect_step.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_win64_debug.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux_ubsan_vptr.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_fyi_linux__swarming_.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/v8.expected/full_client_v8_V8_Random_Deopt_Fuzzer___debug.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_passed_isolated_script_perf_test_disabled.json
[rename] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipe_modules/swarming/tests/collect_gtest_task_test.py
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium_trybot.expected/swarming_test_failure.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTLinuxUBSanVptr_tester.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/full_chromium_mac_Mac10_11_Tests.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Mac10_9.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/v8.expected/full_client_v8_V8_Linux64.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/v8.expected/full_client_v8_V8_Fuzzer.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTMacASan_tester.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_win32_release.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.py
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/full_chromium_memory_Mac_ASan_64_Tests__1_.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_isolated_chartjson_test_missing_all_shards.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipe_modules/swarming/example.expected/isolated_script_with_custom_merge.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/full_client_skia_Win7_Tests__1_.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/dynamic_swarmed_isolated_script_perf_test_ignore_task_failure.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipe_modules/swarming/example.expected/basic.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_android32__m_nexus5x__dbg_.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Mac_Retina_Debug__AMD_.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipe_modules/swarming/api.py
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium_trybot.expected/swarmed_webkit_tests_minimal_pass_continues.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Mac10_11__dbg_.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux64_release.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/v8.expected/full_tryserver_v8_v8_linux64_rel_ng_triggered.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Linux_Release__NVIDIA_.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Mac_Retina_Release__AMD_.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_android64__m_nexus5x_.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_memcheck.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/v8.expected/full_tryserver_v8_v8_linux_rel_ng_triggered_failures.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipe_modules/ios/example.expected/timed_out.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinClngLLDdbg_tester.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Mac_Retina_Release__NVIDIA_.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipe_modules/swarming/example.expected/swarming_expired_new.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/v8.expected/full_client_v8_V8_Linux_swarming_collect_failure.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Win7__dbg_.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/full_chromium_memory_full_Linux_ChromeOS_MSan_Tests.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Linux_Release__NVIDIA_.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/v8.expected/full_client_v8_V8_Linux.json
[rename] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipe_modules/swarming/resources/collect_gtest_task.py
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipe_modules/swarming/example.expected/swarming_expired_old.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/v8.expected/full_client_v8_V8_Deopt_Fuzzer.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/full_chromium_win_Win7__32__Tests.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipe_modules/swarming/resources/standard_isolated_script_merge.py
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/ios/try.expected/basic.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipe_modules/swarming/example.expected/show_shards_in_collect_step.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/dynamic_swarmed_failed_isolated_script_test.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Mac10_12.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/full_chromium_perf_Win_7_Perf.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Optional_Mac_Retina_Release__AMD_.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinClngLLD64dbg_tester.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/full_chromium_win_Win7_Tests__dbg__1_.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Mac_Debug__Intel_.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/findit/chromium/test.expected/use_analyze_set_to_False_for_non_linear_try_job.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipe_modules/ios/example.expected/no_exit_code.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/isolated_script_test_custom_merge_script_with_args.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux_ubsan.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Mac_Release__Intel_.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_android64__m_nexus5x__dbg_.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_tsan_v2.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipe_modules/ios/example.expected/test_failure.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/full_chromium_linux_Linux_Tests.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/full_chromium_mac_Mac10_9_Tests.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/full_chromium_win_Win10_Tests_x64.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinClang64_dll__tester.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux_dbg.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/findit/chromium/test.expected/unaffected_test_skipped_by_analyze.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipe_modules/ios/example.expected/basic.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipe_modules/swarming/example.expected/isolated_script_timeout_old.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTWin_dbg__tester.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_win_x64_rel.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/findit/chromium/test.expected/all_test_passed.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Win7_Release__NVIDIA_.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/full_chromium_perf_fyi_Win_10_Low_End_Perf_Tests.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_ubsan.json
[rename] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipe_modules/swarming/tests/collect_isolated_script_task_test.py
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_win_x64_dbg.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinClang64_dbg__tester.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_msan.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_win64_release.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_fyi_android_asan__swarming_.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/isolated_script_test_custom_results_handler.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/v8.expected/full_tryserver_v8_v8_linux_rel_ng_triggered_slow_tests.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Win7.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Optional_Mac_Release__Intel_.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/full_chromium_perf_Mac_10_11_Perf.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/full_chromium_win_Win_7_Tests_x64__1_.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux_memcheck.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/full_chromium_perf_Win_10_Perf.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/findit/chromium/test.expected/findit_culprit_in_last_sub_range.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/full_chromium_perf_Win_7_x64_Perf.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_isolated_chartjson_test_missing_shard.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_corrupt_json_isolated_script_test.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/full_chromium_perf_Mac_10_12_Perf.json
[modify] https://crrev.com/c926e68e032bf5201fdca5f01f1ab125f7233ddb/scripts/slave/recipes/chromium.expected/full_ch
Project Member

Comment 22 by bugdroid1@chromium.org, Apr 10 2017

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/tools/build/+/06e6b3accc66f6c31053055c8e0efcd978f18b03

commit 06e6b3accc66f6c31053055c8e0efcd978f18b03
Author: John Budorick <jbudorick@chromium.org>
Date: Mon Apr 10 23:51:44 2017

Implement a generic postprocess/merge hook for swarming tasks. (RELAND 4)

Bug:680729

Change-Id: Ic543980f2376b60b64541dd2b2e85fd2e62cb05c
Reviewed-on: https://chromium-review.googlesource.com/473386
Commit-Queue: John Budorick <jbudorick@chromium.org>
Reviewed-by: Marc-Antoine Ruel <maruel@chromium.org>
Reviewed-by: Dirk Pranke <dpranke@chromium.org>

[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/dynamic_swarmed_gtest_mac_gpu.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/v8.expected/full_tryserver_v8_v8_linux_rel_ng_triggered_triggered_by_ts.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipe_modules/ios/example.expected/expired.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTLinuxASan_tester.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Mac10_10.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipe_modules/test_utils/test_api.py
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipe_modules/swarming/example.expected/isolated_script_expired_new.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/v8.expected/full_tryserver_v8_v8_linux_rel_ng_triggered_triggered_by_cq.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_mac64_debug.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_asan.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/full_chromium_perf_Mac_Air_10_11_Perf.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Win7_Release__AMD_.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_mac64_release.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/full_chromium_linux_Linux_Tests__dbg__1_.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/full_chromium_perf_Win_7_Intel_GPU_Perf.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTLinuxLLD_tester.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Fake_Linux_Release__NVIDIA_.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipe_modules/swarming/example.expected/isolated_script_expired_old.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTWin64_dbg__tester.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/full_client_skia_Linux_Tests_Trybot.json
[add] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipe_modules/swarming/example.expected/gtest_with_outputs_ref.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux_tsan2.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Optional_Win7_Release__NVIDIA_.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_android_dbg.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_win32_debug.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/full_client_skia_Win7_Tests__1__Trybot.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_ubsan_vptr.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipe_modules/swarming/example.expected/isolated_large_outdir.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium_trybot.expected/swarmed_layout_tests_too_many_failures_for_retcode.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/full_chromium_memory_Mac_ASan_64_Tests__1_.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTMac_tester.json
[rename] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipe_modules/swarming/resources/collect_task.py
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Optional_Linux_Release__NVIDIA_.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Linux_Debug__NVIDIA_.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/isolated_script_test_custom_merge_script.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_android32__m_nexus5x_.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/swarming/staging.expected/one_fails.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_isolated_chartjson_test_harness_failure.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipe_modules/swarming/example.expected/swarming_timeout_old.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Win7_Debug__NVIDIA_.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_fyi_win__swarming_.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_android_experimental.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/findit/chromium/test.expected/swarming_tests.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/v8.py
[add] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipe_modules/swarming/resources/noop_merge.py
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/findit/chromium/test.expected/all_test_failed.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/ios/unified_builder_tester.expected/basic.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/findit/chromium/test.expected/findit_culprit_in_first_sub_range.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/full_chromium_chromiumos_Linux_ChromiumOS_Ozone_Tests__1_.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium_trybot.expected/swarmed_webkit_tests_interrupted.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_passed_isolated_script_perf_test.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/full_chromium_perf_Linux_Perf.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium_trybot.expected/dynamic_isolated_script_test_on_trybot_passing.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_passed_isolated_script_perf_test_empty.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_fyi_win32_asan__swarming_.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/full_chromium_win_Win7_Tests__1_.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipe_modules/swarming/example.expected/show_isolated_out_in_collect_step.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_win64_debug.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux_ubsan_vptr.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_fyi_linux__swarming_.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/v8.expected/full_client_v8_V8_Random_Deopt_Fuzzer___debug.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Win7__dbg_.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium_trybot.expected/swarming_test_failure.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTLinuxUBSanVptr_tester.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/full_chromium_mac_Mac10_11_Tests.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Mac10_9.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/v8.expected/full_client_v8_V8_Linux64.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/v8.expected/full_client_v8_V8_Fuzzer.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTMacASan_tester.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_win32_release.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.py
[rename] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipe_modules/swarming/resources/standard_gtest_merge.py
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_isolated_chartjson_test_missing_all_shards.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipe_modules/swarming/example.expected/isolated_script_with_custom_merge.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/full_client_skia_Win7_Tests__1_.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/dynamic_swarmed_isolated_script_perf_test_ignore_task_failure.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipe_modules/swarming/example.expected/basic.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_android32__m_nexus5x__dbg_.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Mac_Retina_Debug__AMD_.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipe_modules/swarming/api.py
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium_trybot.expected/swarmed_webkit_tests_minimal_pass_continues.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Mac10_11__dbg_.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux64_release.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/v8.expected/full_tryserver_v8_v8_linux64_rel_ng_triggered.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Linux_Release__NVIDIA_.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Mac_Retina_Release__AMD_.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_android64__m_nexus5x_.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_memcheck.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/v8.expected/full_tryserver_v8_v8_linux_rel_ng_triggered_failures.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipe_modules/ios/example.expected/timed_out.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinClngLLDdbg_tester.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Mac_Retina_Release__NVIDIA_.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipe_modules/swarming/example.expected/swarming_expired_new.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/v8.expected/full_client_v8_V8_Linux_swarming_collect_failure.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/v8.expected/full_tryserver_v8_v8_linux_rel_ng_triggered.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/full_chromium_memory_full_Linux_ChromeOS_MSan_Tests.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Linux_Release__NVIDIA_.json
[rename] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipe_modules/swarming/tests/standard_gtest_merge_test.py
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/v8.expected/full_client_v8_V8_Linux.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/webrtc/standalone.py
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipe_modules/swarming/example.expected/swarming_expired_old.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/v8.expected/full_client_v8_V8_Deopt_Fuzzer.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/full_chromium_win_Win7__32__Tests.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipe_modules/swarming/resources/standard_isolated_script_merge.py
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/ios/try.expected/basic.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipe_modules/swarming/example.expected/show_shards_in_collect_step.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/dynamic_swarmed_failed_isolated_script_test.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Mac10_12.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/full_chromium_perf_Win_7_Perf.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Optional_Mac_Retina_Release__AMD_.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinClngLLD64dbg_tester.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/full_chromium_win_Win7_Tests__dbg__1_.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Mac_Debug__Intel_.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/findit/chromium/test.expected/use_analyze_set_to_False_for_non_linear_try_job.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipe_modules/ios/example.expected/no_exit_code.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/isolated_script_test_custom_merge_script_with_args.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux_ubsan.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Mac_Release__Intel_.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_android64__m_nexus5x__dbg_.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_tsan_v2.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipe_modules/ios/example.expected/test_failure.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/full_chromium_linux_Linux_Tests.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/full_chromium_mac_Mac10_9_Tests.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/full_chromium_win_Win10_Tests_x64.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinClang64_dll__tester.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux_dbg.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/findit/chromium/test.expected/unaffected_test_skipped_by_analyze.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipe_modules/ios/example.expected/basic.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipe_modules/swarming/example.expected/isolated_script_timeout_old.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/full_chromium_fyi_ClangToTWin_dbg__tester.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_win_x64_rel.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/findit/chromium/test.expected/all_test_passed.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/full_chromium_gpu_Win7_Release__NVIDIA_.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/full_chromium_perf_fyi_Win_10_Low_End_Perf_Tests.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_ubsan.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_passed_isolated_script_perf_test_disabled.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_win_x64_dbg.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinClang64_dbg__tester.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_linux_msan.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_win64_release.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/webrtc/standalone.expected/client_webrtc_fyi_android_asan__swarming_.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/isolated_script_test_custom_results_handler.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/v8.expected/full_tryserver_v8_v8_linux_rel_ng_triggered_slow_tests.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Win7.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/full_chromium_gpu_fyi_Optional_Mac_Release__Intel_.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/full_chromium_perf_Mac_10_11_Perf.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/full_chromium_win_Win_7_Tests_x64__1_.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux_memcheck.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/full_chromium_perf_Win_10_Perf.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/findit/chromium/test.expected/findit_culprit_in_last_sub_range.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/full_chromium_perf_Win_7_x64_Perf.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_isolated_chartjson_test_missing_shard.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/dynamic_swarmed_sharded_corrupt_json_isolated_script_test.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/full_chromium_perf_Mac_10_12_Perf.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/full_chromium_linux_Linux_Tests__dbg__1__32_.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium_trybot.py
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinClang_dbg__tester.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux32_dbg.json
[modify] https://crrev.com/06e6b3accc66f6c31053055c8e0efcd978f18b03/scripts/s
Project Member

Comment 23 by bugdroid1@chromium.org, Apr 11 2017

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/src.git/+/19edf6e0b7f80c82a2691a041fdbd6cce13564ae

commit 19edf6e0b7f80c82a2691a041fdbd6cce13564ae
Author: tansell <tansell@chromium.org>
Date: Tue Apr 11 01:27:01 2017

webkitpy: Making merge-layout-test-results support --task-summary

Needed for John's "Implement a generic postprocess/merge hook for
swarming tasks." change.

BUG=680729,524758
NOTRY=true

Review-Url: https://codereview.chromium.org/2807383002
Cr-Commit-Position: refs/heads/master@{#463487}

[modify] https://crrev.com/19edf6e0b7f80c82a2691a041fdbd6cce13564ae/third_party/WebKit/Tools/Scripts/merge-layout-test-results

Project Member

Comment 24 by bugdroid1@chromium.org, Apr 11 2017

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/tools/build/+/277090ca68619cb10fc5657336f8346a5b2bee73

commit 277090ca68619cb10fc5657336f8346a5b2bee73
Author: John Budorick <jbudorick@chromium.org>
Date: Tue Apr 11 02:30:02 2017

Restore logging to the swarming task collection script.

Bug:680729

Change-Id: I551920df04aacd66f4559f87025ca54e8062bd60
Reviewed-on: https://chromium-review.googlesource.com/474545
Reviewed-by: Tim 'mithro' Ansell <tansell@chromium.org>
Commit-Queue: John Budorick <jbudorick@chromium.org>

[modify] https://crrev.com/277090ca68619cb10fc5657336f8346a5b2bee73/scripts/slave/recipe_modules/swarming/resources/collect_task.py

Status: Fixed (was: Started)

Sign in to add a comment