| 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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 forgiving_steps=forgiving_steps, | 72 forgiving_steps=forgiving_steps, |
| 73 use_getname=True, | 73 use_getname=True, |
| 74 public_html='../master.chromium/public_html', | 74 public_html='../master.chromium/public_html', |
| 75 sheriffs=['sheriff_memory'], | 75 sheriffs=['sheriff_memory'], |
| 76 status_header='Failure notification for "%(steps)s" on "%(builder)s".\n' | 76 status_header='Failure notification for "%(steps)s" on "%(builder)s".\n' |
| 77 'Please see if the failures are related to your commit and take ' | 77 'Please see if the failures are related to your commit and take ' |
| 78 'appropriate actions (e.g. revert, update suppressions, notify ' | 78 'appropriate actions (e.g. revert, update suppressions, notify ' |
| 79 'sheriff, etc.).\n\n' | 79 'sheriff, etc.).\n\n' |
| 80 'For more info on the memory waterfall please see these links:\n' | 80 'For more info on the memory waterfall please see these links:\n' |
| 81 'http://dev.chromium.org/developers/tree-sheriffs/sheriff-details-chro
mium/memory-sheriff\n' | 81 'http://dev.chromium.org/developers/tree-sheriffs/sheriff-details-chro
mium/memory-sheriff\n' |
| 82 'http://dev.chromium.org/developers/how-tos/using-valgrind\n' | |
| 83 'http://dev.chromium.org/developers/how-tos/using-valgrind/threadsanit
izer\n' | 82 'http://dev.chromium.org/developers/how-tos/using-valgrind/threadsanit
izer\n' |
| 84 '\nBy the way, the current memory sheriff is on the CC list.' | 83 '\nBy the way, the current memory sheriff is on the CC list.' |
| 85 )) | 84 )) |
| 86 | 85 |
| 87 # Set up a separate notifier for the Dr.Memory bots. | 86 # Set up a separate notifier for the Dr.Memory bots. |
| 88 # TODO(timurrrr); merge this with the main notifier once DrMemory is verified | 87 # TODO(timurrrr); merge this with the main notifier once DrMemory is verified |
| 89 # to send few e-mails. | 88 # to send few e-mails. |
| 90 drm_categories_steps = { | 89 drm_categories_steps = { |
| 91 'drmemory_tester': [ | 90 'drmemory_tester': [ |
| 92 # Please keep this list sorted. | 91 # Please keep this list sorted. |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 '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 ' |
| 135 'expected to indicate real bugs.\n\n' | 134 'expected to indicate real bugs.\n\n' |
| 136 '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 ' |
| 137 'appropriate actions (e.g. revert, update suppressions, notify ' | 136 'appropriate actions (e.g. revert, update suppressions, notify ' |
| 138 'sheriff, etc.).\n\n' | 137 'sheriff, etc.).\n\n' |
| 139 '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' |
| 140 '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' |
| 141 'http://dev.chromium.org/developers/how-tos/using-drmemory\n' | 140 'http://dev.chromium.org/developers/how-tos/using-drmemory\n' |
| 142 '\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.' |
| 143 )) | 142 )) |
| OLD | NEW |