| 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 28 matching lines...) Expand all Loading... |
| 39 'memory test: remoting', | 39 'memory test: remoting', |
| 40 'memory test: reliability', | 40 'memory test: reliability', |
| 41 # Running two times with different tools on the same bot, hence _1 version. | 41 # Running two times with different tools on the same bot, hence _1 version. |
| 42 'memory test: reliability_1', | 42 'memory test: reliability_1', |
| 43 'memory test: sandbox', | 43 'memory test: sandbox', |
| 44 'memory test: sql', | 44 'memory test: sql', |
| 45 'memory test: sync', | 45 'memory test: sync', |
| 46 'memory test: sync_unit_tests', | 46 'memory test: sync_unit_tests', |
| 47 'memory test: ui_base_unittests', | 47 'memory test: ui_base_unittests', |
| 48 'memory test: unit', | 48 'memory test: unit', |
| 49 'memory test: unit_1', # it's sharded on Mac Valgrind and TSan Linux | 49 'memory test: unit_1', # it's sharded on TSan Linux |
| 50 'memory test: url', | 50 'memory test: url', |
| 51 'memory test: views', | 51 'memory test: views', |
| 52 ], | 52 ], |
| 53 'windows': ['svnkill', 'taskkill'], | 53 'windows': ['svnkill', 'taskkill'], |
| 54 'compile': ['check_deps', 'compile', 'archive_build'] | 54 'compile': ['check_deps', 'compile', 'archive_build'] |
| 55 } | 55 } |
| 56 | 56 |
| 57 exclusions = { | 57 exclusions = { |
| 58 } | 58 } |
| 59 | 59 |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 'NOTE: This bot is in testing mode, but most of the failures are ' | 136 'NOTE: This bot is in testing mode, but most of the failures are ' |
| 137 'expected to indicate real bugs.\n\n' | 137 'expected to indicate real bugs.\n\n' |
| 138 'Please see if the failures are related to your commit and take ' | 138 'Please see if the failures are related to your commit and take ' |
| 139 'appropriate actions (e.g. revert, update suppressions, notify ' | 139 'appropriate actions (e.g. revert, update suppressions, notify ' |
| 140 'sheriff, etc.).\n\n' | 140 'sheriff, etc.).\n\n' |
| 141 'For more info on Dr.Memory waterfall please see these links:\n' | 141 'For more info on Dr.Memory waterfall please see these links:\n' |
| 142 'http://dev.chromium.org/developers/tree-sheriffs/sheriff-details-chro
mium/memory-sheriff\n' | 142 'http://dev.chromium.org/developers/tree-sheriffs/sheriff-details-chro
mium/memory-sheriff\n' |
| 143 'http://dev.chromium.org/developers/how-tos/using-drmemory\n' | 143 'http://dev.chromium.org/developers/how-tos/using-drmemory\n' |
| 144 '\nBy the way, the current memory sheriff is on the CC list.' | 144 '\nBy the way, the current memory sheriff is on the CC list.' |
| 145 )) | 145 )) |
| OLD | NEW |