| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 from master import failures_notifier | 5 from master import failures_notifier |
| 6 from master import master_utils | 6 from master import master_utils |
| 7 | 7 |
| 8 # This is the list of the builder categories and the corresponding critical | 8 # This is the list of the builder categories and the corresponding critical |
| 9 # steps. If one critical step fails, gatekeeper will close the tree | 9 # steps. If one critical step fails, gatekeeper will close the tree |
| 10 # automatically. | 10 # automatically. |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 'NOTE: This bot is in testing mode, but most of the failures are ' | 133 'NOTE: This bot is in testing mode, but most of the failures are ' |
| 134 'expected to indicate real bugs.\n\n' | 134 'expected to indicate real bugs.\n\n' |
| 135 'Please see if the failures are related to your commit and take ' | 135 'Please see if the failures are related to your commit and take ' |
| 136 'appropriate actions (e.g. revert, update suppressions, notify ' | 136 'appropriate actions (e.g. revert, update suppressions, notify ' |
| 137 'sheriff, etc.).\n\n' | 137 'sheriff, etc.).\n\n' |
| 138 'For more info on Dr.Memory waterfall please see these links:\n' | 138 'For more info on Dr.Memory waterfall please see these links:\n' |
| 139 'http://dev.chromium.org/developers/tree-sheriffs/sheriff-details-chro
mium/memory-sheriff\n' | 139 'http://dev.chromium.org/developers/tree-sheriffs/sheriff-details-chro
mium/memory-sheriff\n' |
| 140 'http://dev.chromium.org/developers/how-tos/using-drmemory\n' | 140 'http://dev.chromium.org/developers/how-tos/using-drmemory\n' |
| 141 '\nBy the way, the current memory sheriff is on the CC list.' | 141 '\nBy the way, the current memory sheriff is on the CC list.' |
| 142 )) | 142 )) |
| OLD | NEW |