Builder ToTLinuxThinLTO Build 1607
Results:
Experimental Failure gclient runhooks
Trigger Info:
Project | chromium |
Revision | 47f5d9434eb58a7bc0862c2e92c7a6cd6d708c36 |
Got Revision | 47f5d9434eb58a7bc0862c2e92c7a6cd6d708c36 |
Execution:
- Source: Task 427f6e2860a28a10
- Bot: gce-trusty-32-0258d129-us-west1-c-m020
- Recipe: chromium
Steps and Logfiles:
Show:Build Properties:
Name | Value | Source |
---|---|---|
$recipe_engine/path | {"cache_dir": "/b/s/w/ir/cache", "temp_dir": "/b/s/w/ir/tmp/rt"} | setup_build |
$recipe_engine/runtime | {"is_experimental": true, "is_luci": true} | setup_build |
bot_id | "gce-trusty-32-0258d129-us-west1-c-m020" | setup_build |
branch | "refs/heads/master" | setup_build |
buildbucket | {"build": {"bucket": "luci.chromium.ci", "created_by": "user:luci-scheduler@appspot.gserviceaccount.com", "created_ts": 1547909765918497, "id": "8923892685251408096", "project": "chromium", "tags": ["builder:ToTLinuxThinLTO", "buildset:commit/git/47f5d9434eb58a7bc0862c2e92c7a6cd6d708c36", "buildset:commit/gitiles/chromium.googlesource.com/chromium/src/+/47f5d9434eb58a7bc0862c2e92c7a6cd6d708c36", "gitiles_ref:refs/heads/master", "scheduler_invocation_id:9089322747486786704", "scheduler_job_id:chromium/ToTLinuxThinLTO", "user_agent:luci-scheduler"]}, "hostname": "cr-buildbucket.appspot.com"} | setup_build |
buildername | "ToTLinuxThinLTO" | setup_build |
buildnumber | 1607 | setup_build |
mastername | "chromium.clang" | setup_build |
path_config | "generic" | setup_build |
perf_dashboard_machine_group | "ChromiumClang" | setup_build |
recipe | "chromium" | setup_build |
repository | "https://chromium.googlesource.com/chromium/src.git" | setup_build |
revision | "47f5d9434eb58a7bc0862c2e92c7a6cd6d708c36" | setup_build |
got_angle_revision | "7403dd2cd3764fe96660fe09892e764e9ae1dbca" | bot_update |
got_buildtools_revision | "2f02e1f363b1af2715536f38e239853f04ec1497" | bot_update |
got_dawn_revision | "850c0d9aec6bd3f63cb58ff1838380efc112279a" | bot_update |
got_nacl_revision | "ff15c51d20785fa51c0ef03ccb480b87299acbeb" | bot_update |
got_revision | "47f5d9434eb58a7bc0862c2e92c7a6cd6d708c36" | bot_update |
got_revision_cp | "refs/heads/master@{#624471}" | bot_update |
got_swarming_client_revision | "0e3e1c4dc4e79f25a5b58fcbc135dc93183c0c54" | bot_update |
got_v8_revision | "49d3755f33eb8f2e44b2da7ba21556429d6b2493" | bot_update |
got_v8_revision_cp | "refs/heads/7.3.451@{#1}" | bot_update |
got_webrtc_revision | "74ba99062c48b278675cfe52643719202296fddc" | bot_update |
got_webrtc_revision_cp | "refs/heads/master@{#26298}" | bot_update |
Blamelist:
- Aleksei Loshkarev (lixanohnoyoudont@yandex-team.ru)
- Gabriel Charette (gabohnoyoudont@chromium.org)
Timing:
Create | Saturday, 19-Jan-19 14:56:05 UTC |
Start | Saturday, 19-Jan-19 14:59:38 UTC |
End | Saturday, 19-Jan-19 15:35:27 UTC |
Pending | 3 mins 32 secs |
Execution | 35 mins 49 secs |
All Changes:
-
Normalize Profile DoFinalInit sequence
Changed by Aleksei Loshkarev - lixanohnoyoudont@yandex-team.ru Changed at Saturday, 19-Jan-19 14:13:45 UTC Repository https://chromium.googlesource.com/chromium/src Branch Revision 47f5d9434eb58a7bc0862c2e92c7a6cd6d708c36 Comments
Normalize Profile DoFinalInit sequence Profiles are created by one of two ProfileManager functions: CreateProfileHelper and CreateProfileAsyncHelper. Also two DoFinalInit functions exists one in ProfileImpl and one in ProfileManager. In case of sync profile creation ProfileManager::DoFinalInit is called after ProfileImpl::DoFinalInit. In case of async profile creation ProfileManager::DoFinalInit is called inside ProfileImpl::DoFinalInit through Profile::Delegate. This CL moves delegate calls to end of ProfileImpl::DoFinalInit and normalise profile initialization sequence. In Yandex we have trouble with recently added io_data_.InitializeDataReductionProxy() because it was inserted after calling Profile::Delegate. Change-Id: I3ca408e41ca13421d7899f66d5db8b8a06d77eb4 Reviewed-on: https://chromium-review.googlesource.com/c/1417874 Commit-Queue: Aleksei Loshkarev <lixan@yandex-team.ru> Reviewed-by: David Roger <droger@chromium.org> Cr-Commit-Position: refs/heads/master@{#624471}
Changed files
- chrome/browser/profiles/profile_impl.cc
-
[base] Make Timer::SetTaskRunner sequence-affine.
Changed by Gabriel Charette - gabohnoyoudont@chromium.org Changed at Saturday, 19-Jan-19 14:13:05 UTC Repository https://chromium.googlesource.com/chromium/src Branch Revision e92ccc00d7bbed2632e518d9d2b57edbff93d6d1 Comments
[base] Make Timer::SetTaskRunner sequence-affine. This is a prereq to make all of base::Timer sequence-affine. Ideally we would get rid of Timer::SetTaskRunner but it's used in many tests to mock the clock (by redirecting the delayed task to a TestSimpleTaskRunner or TestMockTimeTaskRunner explicitly managed by the test). Hence this CL bans multi-threaded use cases while still allowing same-thread use cases for old tests. Bug: 587199, 896990 Change-Id: I1785ff404f115309ea6eec743004709048d52f07 Reviewed-on: https://chromium-review.googlesource.com/c/1394311 Commit-Queue: Gabriel Charette <gab@chromium.org> Auto-Submit: Gabriel Charette <gab@chromium.org> Reviewed-by: François Doray <fdoray@chromium.org> Cr-Commit-Position: refs/heads/master@{#624470}
Changed files
- base/timer/timer.cc
- base/timer/timer.h
- base/timer/timer_unittest.cc