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

Issue 1422773008: Fixing remaining VC++ 2015 64-bit build breaks (Closed)

Created:
5 years, 1 month ago by brucedawson
Modified:
5 years ago
CC:
chromium-reviews, mlamouri+watch-content_chromium.org, cbentzel+watch_chromium.org, szager+layoutwatch_chromium.org, leviw+renderwatch, Peter Beverloo, wfh+watch_chromium.org, blink-reviews-layout_chromium.org, pdr+renderingwatchlist_chromium.org, jam, rickyz+watch_chromium.org, eae+blinkwatch, blink-reviews-events_chromium.org, zoltan1, dglazkov+blink, darin-cc_chromium.org, jchaffraix+rendering, blink-reviews, mkwst+moarreviews-shell_chromium.org, blink-reviews-wtf_chromium.org, jochen+watch_chromium.org, Mikhail
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Fixing remaining VC++ 2015 64-bit build breaks VC++ 2015 64-bit builds trigger many new warnings about possibly unintended truncation bugs. Some of the bugs have a very low signal-to- noise ratio and this change suppresses them (4311 and 4312). Others seem to find some real bugs so I am leaving them enabled for now (4302 and 4334), fixing the bugs, and adjusting the code to suppress the other warnings. The changes in shell_web_contents_view_delegate_win.cc, ipc_perftest_support.cc, test_root_certs_win.cc, TracedLayoutObject.* and TraceEvent.h appear to fix real truncation bugs. Typical warnings are: ipc\ipc_perftest_support.cc(351): warning C4334: '<<': result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) net\cert\test_root_certs_win.cc(103): warning C4302: 'reinterpret_cast': truncation from 'LPCSTR' to 'uint32_t' The main pattern is that VC++ 2015 is suspicious of code that converts a 64-bit pointer to a 32-bit integer. If the code converts from a pointer to a 64-bit integer, and then to a 32-bit integer, separating the type change from the truncation, then it assumes that the truncation is intentional. This seems like a reasonable heuristic. The warnings in the generated code were suppressed because they aren't bugs and because fixing gperf.exe (untouched since 2004) does not seem worthwhile. The warnings from gperf generated code look like: out\release_x64\gen\blink\core\csspropertynames.cpp(2914): warning C4302: 'type cast': truncation from 'char (*)[28]' to 'long' out\release_x64\gen\blink\core\cssvaluekeywords.cpp(3409): warning C4302: 'type cast': truncation from 'char (*)[4]' to 'long' Note that Windows HANDLE types are a wrapper around a pointer, but due to WOW64 (32-bit process on 64-bit Windows) compatibility they are always 32-bit values that can safely be truncated, then sign-extended back. Unfortunately Microsoft does not supply a safe-truncation macro. https://msdn.microsoft.com/en-us/library/windows/desktop/aa384203%28v=vs.85%29.aspx Also a few uncommented warning-disables in common.gypi were commented. Setting NOTRY=true because the change is hitting timeouts. See crbug.com/567377 and comment #119 for details. NOTRY=true BUG=440500 Committed: https://crrev.com/d3beca7e8267b3db4e8245eb588147639a1b1bd2 Cr-Commit-Position: refs/heads/master@{#364264}

Patch Set 1 #

Patch Set 2 : Updated to latest origin/master #

Patch Set 3 : Use uintptr_t instead of size_t #

Patch Set 4 : More tweaks to the fixes. #

Patch Set 5 : Disable C4302 for two generated files. #

Patch Set 6 : Fixing test comment #

Patch Set 7 : Sync to latest #

Total comments: 26

Patch Set 8 : Some CR tweaks #

Total comments: 6

Patch Set 9 : Switch to HandleToUint32 #

Patch Set 10 : Adding #ifdefs #

Total comments: 2

Patch Set 11 : Spot suppression of C4311 and global suppression of C4312 #

Total comments: 2

Patch Set 12 : Supply reference for handles-are-32-bits claim #

Total comments: 13

Patch Set 13 : Comment and formatting tweaks #

Patch Set 14 : git pull to latest code #

Patch Set 15 : More use of HandleToUint32 #

Total comments: 6

Patch Set 16 : Removing unnecessary #if defined(s) #

Total comments: 3

Patch Set 17 : Remove more unneeded #ifs #

Patch Set 18 : Pull to latest #

Patch Set 19 : git pull #

Patch Set 20 : Removing unneeded include #

Unified diffs Side-by-side diffs Delta from patch set Stats (+84 lines, -45 lines) Patch
M base/win/win_util.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +8 lines, -0 lines 0 comments Download
M build/common.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 3 chunks +6 lines, -1 line 0 comments Download
M chrome/app/chrome_watcher_client_unittest_win.cc View 1 2 3 4 5 6 7 8 10 11 12 13 14 15 16 2 chunks +5 lines, -4 lines 0 comments Download
M chrome/app/chrome_watcher_command_line_win.cc View 1 2 3 4 5 6 7 8 10 11 12 13 14 15 16 2 chunks +2 lines, -1 line 0 comments Download
M chrome/app/close_handle_hook_win.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 chunk +2 lines, -2 lines 0 comments Download
M chrome/browser/hang_monitor/hung_plugin_action.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 2 chunks +3 lines, -5 lines 0 comments Download
M chrome/browser/hang_monitor/hung_window_detector.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 2 chunks +3 lines, -4 lines 0 comments Download
M components/startup_metric_utils/browser/startup_metric_utils.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 2 chunks +2 lines, -1 line 0 comments Download
M content/child/npapi/webplugin_delegate_impl_win.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +2 lines, -1 line 0 comments Download
M content/common/pepper_file_util.cc View 1 2 3 4 5 6 7 8 9 10 2 chunks +2 lines, -7 lines 0 comments Download
M content/common/sandbox_win.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 chunks +4 lines, -2 lines 0 comments Download
M content/public/common/common_param_traits.h View 1 2 3 4 5 6 7 8 9 2 chunks +5 lines, -2 lines 0 comments Download
M content/shell/browser/shell_web_contents_view_delegate_win.cc View 1 2 3 4 5 6 7 1 chunk +2 lines, -1 line 0 comments Download
M ipc/ipc_perftest_support.cc View 1 chunk +1 line, -1 line 0 comments Download
M net/cert/test_root_certs_win.cc View 1 2 3 4 5 6 7 1 chunk +2 lines, -2 lines 0 comments Download
M sandbox/win/src/interception_unittest.cc View 1 chunk +1 line, -1 line 0 comments Download
M sandbox/win/src/policy_target_test.cc View 1 2 3 4 5 6 7 8 9 2 chunks +5 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/build/scripts/make_css_property_names.py View 1 2 3 4 5 6 7 8 9 10 1 chunk +7 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/build/scripts/make_css_value_keywords.py View 1 2 3 4 5 6 7 8 9 10 1 chunk +7 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/core/layout/TracedLayoutObject.h View 1 2 3 4 5 6 7 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/layout/TracedLayoutObject.cpp View 1 2 3 4 5 6 7 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/platform/TraceEvent.h View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/wtf/BitVector.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +1 line, -0 lines 0 comments Download
M third_party/libxml/libxml.gyp View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +4 lines, -4 lines 0 comments Download
M third_party/libxslt/libxslt.gyp View 1 2 3 4 5 6 7 8 9 10 1 chunk +3 lines, -0 lines 0 comments Download
M third_party/mesa/mesa.gyp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 chunk +3 lines, -0 lines 0 comments Download

Messages

Total messages: 126 (43 generated)
brucedawson
PTAL when you get a chance. Together with a v8 fix and a webrtc fix ...
5 years, 1 month ago (2015-11-07 00:57:35 UTC) #5
Will Harris
On 2015/11/07 00:57:35, brucedawson wrote: > PTAL when you get a chance. > > Together ...
5 years, 1 month ago (2015-11-10 17:46:59 UTC) #6
Will Harris
https://codereview.chromium.org/1422773008/diff/120001/components/startup_metric_utils/browser/startup_metric_utils.cc File components/startup_metric_utils/browser/startup_metric_utils.cc (right): https://codereview.chromium.org/1422773008/diff/120001/components/startup_metric_utils/browser/startup_metric_utils.cc#newcode139 components/startup_metric_utils/browser/startup_metric_utils.cc:139: if (reinterpret_cast<uintptr_t>(proc_info->UniqueProcessId) == proc_id) { UniqueProcessId is a HANDLE, ...
5 years, 1 month ago (2015-11-10 18:05:14 UTC) #7
brucedawson
Thanks for the feedback. I'm thinking of adding an inline helper function to win_util.h, looking ...
5 years, 1 month ago (2015-11-10 18:43:26 UTC) #9
Peter Kasting
Long term, we'd mostly like to enable even warnings with a low signal-to-noise ratio unless ...
5 years, 1 month ago (2015-11-10 19:40:01 UTC) #11
brucedawson
Regarding behavior changes, I listed the changes that I think fix bugs, which is another ...
5 years, 1 month ago (2015-11-10 19:42:05 UTC) #12
Will Harris
https://codereview.chromium.org/1422773008/diff/120001/content/common/pepper_file_util.cc File content/common/pepper_file_util.cc (right): https://codereview.chromium.org/1422773008/diff/120001/content/common/pepper_file_util.cc#newcode28 content/common/pepper_file_util.cc:28: return static_cast<int>(reinterpret_cast<intptr_t>(socket_handle)); seems it's hard to change pepper api ...
5 years, 1 month ago (2015-11-10 19:45:46 UTC) #14
brucedawson
On 2015/11/10 19:40:01, Peter Kasting wrote: > Long term, we'd mostly like to enable even ...
5 years, 1 month ago (2015-11-10 19:47:30 UTC) #15
Peter Kasting
On 2015/11/10 19:47:30, brucedawson wrote: > On 2015/11/10 19:40:01, Peter Kasting wrote: > > Long ...
5 years, 1 month ago (2015-11-10 19:49:14 UTC) #16
brucedawson
See specific comments. And just to clarify, does the truncation function I've added to win_util.h ...
5 years, 1 month ago (2015-11-10 19:54:33 UTC) #17
Will Harris
https://codereview.chromium.org/1422773008/diff/140001/build/common.gypi File build/common.gypi (right): https://codereview.chromium.org/1422773008/diff/140001/build/common.gypi#newcode5708 build/common.gypi:5708: 4311, # type cast: pointer truncation from pointer to ...
5 years, 1 month ago (2015-11-10 23:01:31 UTC) #18
brucedawson
https://codereview.chromium.org/1422773008/diff/140001/build/common.gypi File build/common.gypi (right): https://codereview.chromium.org/1422773008/diff/140001/build/common.gypi#newcode5708 build/common.gypi:5708: 4311, # type cast: pointer truncation from pointer to ...
5 years, 1 month ago (2015-11-11 01:09:05 UTC) #19
brucedawson
I think I've addressed all of the comments except for disabling 4311/4312 on a project-specific ...
5 years, 1 month ago (2015-11-11 18:56:13 UTC) #20
Will Harris
On 2015/11/11 18:56:13, brucedawson wrote: > I think I've addressed all of the comments except ...
5 years, 1 month ago (2015-11-11 19:27:36 UTC) #21
brucedawson
danakj@, can you weigh in on whether the change to base/win/win_util.h that I'm proposing is ...
5 years, 1 month ago (2015-11-11 19:41:15 UTC) #23
Will Harris
lgtm https://codereview.chromium.org/1422773008/diff/180001/content/common/pepper_file_util.cc File content/common/pepper_file_util.cc (right): https://codereview.chromium.org/1422773008/diff/180001/content/common/pepper_file_util.cc#newcode27 content/common/pepper_file_util.cc:27: return ppapi::PlatformFileToInt(socket_handle); looks like this could call down ...
5 years, 1 month ago (2015-11-11 23:49:35 UTC) #24
brucedawson
There are three conversion warnings that are showing up on VC++ 2015 64-bit builds: C4302: ...
5 years, 1 month ago (2015-11-11 23:53:14 UTC) #25
Peter Kasting
On 2015/11/11 23:53:14, brucedawson wrote: > I don't think that C4312 indicates a pattern which ...
5 years, 1 month ago (2015-11-12 00:02:59 UTC) #26
brucedawson
> It seems like these are fixable without casts by doing something like this: ...
5 years, 1 month ago (2015-11-12 01:40:02 UTC) #27
brucedawson
The latest patch does spot suppression of C4311 (it just took two lines of code ...
5 years, 1 month ago (2015-11-12 02:04:24 UTC) #28
Peter Kasting
General principle sounds fine to me.
5 years, 1 month ago (2015-11-12 05:04:50 UTC) #29
danakj
+grt for base/win/ ownership (also sorry for being slow here, was blinkon week) https://codereview.chromium.org/1422773008/diff/200001/base/win/win_util.h File ...
5 years, 1 month ago (2015-11-14 00:34:59 UTC) #31
brucedawson
> Can you point to some documentation verifying this assumption? Done - reference added to ...
5 years, 1 month ago (2015-11-14 00:46:57 UTC) #32
grt (UTC plus 2)
base/win/win_util.h lgtm
5 years, 1 month ago (2015-11-16 19:38:58 UTC) #33
Nico
Basically lgtm for these files: build\common.gyp chrome\app\chrome_watcher_client_unittest_win.cc chrome\app\chrome_watcher_command_line_win.cc chrome\app\close_handle_hook_win.cc chrome\browser\hang_monitor\hung_plugin_action.cc chrome\browser\hang_monitor\hung_window_detector.cc third_party\WebKit\Source\core\layout\TracedLayoutObject.cpp third_party\WebKit\Source\core\layout\TracedLayoutObject.h third_party\WebKit\Source\platform\TraceEvent.h third_party\WebKit\Source\wtf\BitVector.cpp ...
5 years, 1 month ago (2015-11-16 21:31:07 UTC) #35
brucedawson
I made some comment and formatting tweaks to address your comments. No code changes. PTAL ...
5 years, 1 month ago (2015-11-17 00:24:39 UTC) #36
Nico
thanks, lgtm. i still don't get that one comment, but it's not all that important ...
5 years, 1 month ago (2015-11-17 00:30:27 UTC) #37
brucedawson
> Hm, this now says that it's a truncation, but not why that's ok. Is ...
5 years, 1 month ago (2015-11-17 00:45:59 UTC) #38
brucedawson
I'm back, after reinstalling Windows and Visual Studio. I had been leaving alone the hang-detection ...
5 years, 1 month ago (2015-11-18 01:58:11 UTC) #39
brucedawson
ananta@ - can you look at these files? They are the only unreviewed ones: components\startup_metric_utils\browser\startup_metric_utils.cc ...
5 years, 1 month ago (2015-11-18 01:59:51 UTC) #41
Nico
my files still lgtm, but every time i look at them i find something new ...
5 years, 1 month ago (2015-11-18 02:02:35 UTC) #42
brucedawson
https://codereview.chromium.org/1422773008/diff/280001/chrome/app/close_handle_hook_win.cc File chrome/app/close_handle_hook_win.cc (right): https://codereview.chromium.org/1422773008/diff/280001/chrome/app/close_handle_hook_win.cc#newcode148 chrome/app/close_handle_hook_win.cc:148: reinterpret_cast<DWORD>(module); On 2015/11/18 02:02:35, Nico wrote: > I guess ...
5 years, 1 month ago (2015-11-18 02:06:04 UTC) #43
Will Harris
https://codereview.chromium.org/1422773008/diff/280001/chrome/app/close_handle_hook_win.cc File chrome/app/close_handle_hook_win.cc (right): https://codereview.chromium.org/1422773008/diff/280001/chrome/app/close_handle_hook_win.cc#newcode148 chrome/app/close_handle_hook_win.cc:148: reinterpret_cast<DWORD>(module); On 2015/11/18 02:02:35, Nico wrote: > I guess ...
5 years, 1 month ago (2015-11-18 02:08:17 UTC) #44
Nico
https://codereview.chromium.org/1422773008/diff/280001/chrome/app/close_handle_hook_win.cc File chrome/app/close_handle_hook_win.cc (right): https://codereview.chromium.org/1422773008/diff/280001/chrome/app/close_handle_hook_win.cc#newcode148 chrome/app/close_handle_hook_win.cc:148: reinterpret_cast<DWORD>(module); On 2015/11/18 02:06:04, brucedawson wrote: > On 2015/11/18 ...
5 years, 1 month ago (2015-11-18 02:09:40 UTC) #45
ananta
lgtm https://codereview.chromium.org/1422773008/diff/280001/chrome/browser/hang_monitor/hung_plugin_action.cc File chrome/browser/hang_monitor/hung_plugin_action.cc (right): https://codereview.chromium.org/1422773008/diff/280001/chrome/browser/hang_monitor/hung_plugin_action.cc#newcode18 chrome/browser/hang_monitor/hung_plugin_action.cc:18: The OS_WIN ifdef is not needed. This file ...
5 years, 1 month ago (2015-11-18 19:13:42 UTC) #46
ananta
lgtm
5 years, 1 month ago (2015-11-18 19:13:43 UTC) #47
brettw
lgtm https://codereview.chromium.org/1422773008/diff/300001/chrome/app/chrome_watcher_client_unittest_win.cc File chrome/app/chrome_watcher_client_unittest_win.cc (right): https://codereview.chromium.org/1422773008/diff/300001/chrome/app/chrome_watcher_client_unittest_win.cc#newcode26 chrome/app/chrome_watcher_client_unittest_win.cc:26: #if defined(OS_WIN) This file is named "_win.cc". I ...
5 years, 1 month ago (2015-11-18 19:24:16 UTC) #49
brucedawson
Thanks ananta@/brettw@ for pointing out the excess #ifdefs - I'll happily remove those. And we're ...
5 years, 1 month ago (2015-11-18 19:27:29 UTC) #50
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1422773008/320001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1422773008/320001
5 years, 1 month ago (2015-11-18 20:01:34 UTC) #53
commit-bot: I haz the power
Try jobs failed on following builders: win_chromium_rel_ng on tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win_chromium_rel_ng/builds/136939)
5 years, 1 month ago (2015-11-18 23:38:55 UTC) #55
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1422773008/320001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1422773008/320001
5 years, 1 month ago (2015-11-19 01:11:03 UTC) #57
commit-bot: I haz the power
Try jobs failed on following builders: win_chromium_rel_ng on tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win_chromium_rel_ng/builds/137189)
5 years, 1 month ago (2015-11-19 05:35:41 UTC) #59
brucedawson
On 2015/11/19 05:35:41, commit-bot: I haz the power wrote: > Try jobs failed on following ...
5 years, 1 month ago (2015-11-19 19:19:22 UTC) #60
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1422773008/320001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1422773008/320001
5 years, 1 month ago (2015-11-19 19:20:14 UTC) #62
commit-bot: I haz the power
Try jobs failed on following builders: win_chromium_rel_ng on tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win_chromium_rel_ng/builds/137667)
5 years, 1 month ago (2015-11-20 01:26:14 UTC) #64
Will Harris
On 2015/11/20 01:26:14, commit-bot: I haz the power wrote: > Try jobs failed on following ...
5 years, 1 month ago (2015-11-20 02:30:44 UTC) #65
brucedawson
On 2015/11/20 02:30:44, Will Harris wrote: > On 2015/11/20 01:26:14, commit-bot: I haz the power ...
5 years, 1 month ago (2015-11-20 18:25:13 UTC) #66
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1422773008/320001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1422773008/320001
5 years, 1 month ago (2015-11-20 20:25:03 UTC) #68
commit-bot: I haz the power
Try jobs failed on following builders: win_chromium_rel_ng on tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win_chromium_rel_ng/builds/138315)
5 years, 1 month ago (2015-11-20 23:56:54 UTC) #70
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1422773008/320001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1422773008/320001
5 years ago (2015-11-25 08:40:01 UTC) #72
commit-bot: I haz the power
Try jobs failed on following builders: win_chromium_rel_ng on tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win_chromium_rel_ng/builds/140107)
5 years ago (2015-11-25 13:41:58 UTC) #74
brucedawson
On 2015/11/25 13:41:58, commit-bot: I haz the power wrote: > Try jobs failed on following ...
5 years ago (2015-11-25 16:44:37 UTC) #75
Nico
This CL is rejected by the cq very often, much more often than all other ...
5 years ago (2015-11-25 17:47:00 UTC) #76
Nico
This CL is rejected by the cq very often, much more often than all other ...
5 years ago (2015-11-25 17:47:01 UTC) #77
brucedawson
On 2015/11/25 17:47:01, Nico wrote: > This CL is rejected by the cq very often, ...
5 years ago (2015-11-25 17:51:39 UTC) #78
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1422773008/320001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1422773008/320001
5 years ago (2015-11-26 17:16:43 UTC) #80
commit-bot: I haz the power
Try jobs failed on following builders: win_chromium_rel_ng on tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win_chromium_rel_ng/builds/140844)
5 years ago (2015-11-26 21:18:51 UTC) #82
brucedawson
On 2015/11/26 21:18:51, commit-bot: I haz the power wrote: > Try jobs failed on following ...
5 years ago (2015-11-26 22:32:14 UTC) #83
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1422773008/320001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1422773008/320001
5 years ago (2015-11-26 22:33:13 UTC) #85
commit-bot: I haz the power
Try jobs failed on following builders: win_chromium_rel_ng on tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win_chromium_rel_ng/builds/140894)
5 years ago (2015-11-27 03:35:12 UTC) #87
brucedawson
On 2015/11/27 03:35:12, commit-bot: I haz the power wrote: > Try jobs failed on following ...
5 years ago (2015-11-30 19:32:00 UTC) #88
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1422773008/320001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1422773008/320001
5 years ago (2015-12-01 01:09:56 UTC) #90
commit-bot: I haz the power
Try jobs failed on following builders: win_chromium_rel_ng on tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win_chromium_rel_ng/builds/141927)
5 years ago (2015-12-01 03:43:19 UTC) #92
brucedawson
On 2015/12/01 03:43:19, commit-bot: I haz the power wrote: > Try jobs failed on following ...
5 years ago (2015-12-01 04:35:31 UTC) #93
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1422773008/320001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1422773008/320001
5 years ago (2015-12-01 04:36:31 UTC) #95
commit-bot: I haz the power
Try jobs failed on following builders: win_chromium_rel_ng on tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win_chromium_rel_ng/builds/142027)
5 years ago (2015-12-01 08:40:32 UTC) #97
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1422773008/340001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1422773008/340001
5 years ago (2015-12-02 21:25:20 UTC) #100
commit-bot: I haz the power
Try jobs failed on following builders: mac_chromium_rel_ng on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_rel_ng/builds/148974)
5 years ago (2015-12-02 22:55:22 UTC) #102
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1422773008/340001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1422773008/340001
5 years ago (2015-12-07 21:50:51 UTC) #104
commit-bot: I haz the power
Try jobs failed on following builders: win_chromium_rel_ng on tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win_chromium_rel_ng/builds/145682)
5 years ago (2015-12-07 22:22:51 UTC) #106
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1422773008/380001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1422773008/380001
5 years ago (2015-12-09 20:48:18 UTC) #109
commit-bot: I haz the power
Try jobs failed on following builders: cast_shell_linux on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/cast_shell_linux/builds/90820) linux_android_rel_ng on tryserver.chromium.linux (JOB_FAILED, ...
5 years ago (2015-12-09 21:26:54 UTC) #111
Nico
No CL is this unlucky. I'd recommend splitting this in several CLs and landing each ...
5 years ago (2015-12-09 21:29:31 UTC) #112
Nico
No CL is this unlucky. I'd recommend splitting this in several CLs and landing each ...
5 years ago (2015-12-09 21:29:32 UTC) #113
brucedawson
The spurious failures lately have all been networking glitches - goma failed to initialize this ...
5 years ago (2015-12-09 21:53:07 UTC) #114
Nico
I've never seen this happen iirc, and I send CLs that rebuild all files (by ...
5 years ago (2015-12-09 22:01:46 UTC) #115
Nico
I've never seen this happen iirc, and I send CLs that rebuild all files (by ...
5 years ago (2015-12-09 22:01:50 UTC) #116
brucedawson
On 2015/12/09 22:01:50, Nico wrote: > I've never seen this happen iirc, and I send ...
5 years ago (2015-12-09 22:08:53 UTC) #117
jschuh
On 2015/12/09 22:01:50, Nico wrote: > I've never seen this happen iirc, and I send ...
5 years ago (2015-12-09 23:44:05 UTC) #118
brucedawson
message: On 2015/12/09 23:44:05, jschuh (very slow) wrote: > On 2015/12/09 22:01:50, Nico wrote: > ...
5 years ago (2015-12-10 02:05:44 UTC) #119
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1422773008/380001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1422773008/380001
5 years ago (2015-12-10 02:15:04 UTC) #122
commit-bot: I haz the power
Committed patchset #20 (id:380001)
5 years ago (2015-12-10 02:22:53 UTC) #124
commit-bot: I haz the power
5 years ago (2015-12-10 02:23:57 UTC) #126
Message was sent while issue was closed.
Patchset 20 (id:??) landed as
https://crrev.com/d3beca7e8267b3db4e8245eb588147639a1b1bd2
Cr-Commit-Position: refs/heads/master@{#364264}

Powered by Google App Engine
This is Rietveld 408576698