| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 DEPS = [ | 5 DEPS = [ |
| 6 'bot_update', | 6 'bot_update', |
| 7 'file', | 7 'file', |
| 8 'gclient', | 8 'gclient', |
| 9 'git', | 9 'git', |
| 10 'gsutil', | 10 'gsutil', |
| 11 'json', | 11 'json', |
| 12 'path', | 12 'path', |
| 13 'properties', | 13 'properties', |
| 14 'python', | 14 'python', |
| 15 'raw_io', | 15 'raw_io', |
| 16 'step', | 16 'step', |
| 17 'time', | 17 'time', |
| 18 'v8', |
| 18 ] | 19 ] |
| 19 | 20 |
| 20 REPO = 'https://chromium.googlesource.com/v8/v8' | 21 REPO = 'https://chromium.googlesource.com/v8/v8' |
| 21 CLUSTERFUZZ = 'https://cluster-fuzz.appspot.com/testcase?key=%d' | 22 CLUSTERFUZZ = 'https://cluster-fuzz.appspot.com/testcase?key=%d' |
| 22 SHOW_MAX_ISSUES = 5 | 23 SHOW_MAX_ISSUES = 5 |
| 23 CANDIDATE_REF = 'refs/heads/candidate' | 24 CANDIDATE_REF = 'refs/heads/candidate' |
| 24 LKGR_REF = 'refs/heads/lkgr' | 25 LKGR_REF = 'refs/heads/lkgr' |
| 25 ROLL_REF = 'refs/heads/roll' | 26 ROLL_REF = 'refs/heads/roll' |
| 26 STATUS_URL = 'https://v8-status.appspot.com' | 27 STATUS_URL = 'https://v8-status.appspot.com' |
| 27 SEC_TO_HOURS = 60 * 60 | 28 SEC_TO_HOURS = 60 * 60 |
| (...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 267 date_new, | 268 date_new, |
| 268 current_roll=hsh_old, | 269 current_roll=hsh_old, |
| 269 ) + api.override_step_data('check clusterfuzz', api.json.output([1, 2])) | 270 ) + api.override_step_data('check clusterfuzz', api.json.output([1, 2])) |
| 270 yield Test( | 271 yield Test( |
| 271 'new_lkgr_failed_timestamp', | 272 'new_lkgr_failed_timestamp', |
| 272 hsh_recent, | 273 hsh_recent, |
| 273 date_recent, | 274 date_recent, |
| 274 hsh_new, | 275 hsh_new, |
| 275 date_new, | 276 date_new, |
| 276 ) + api.override_step_data('check timestamp', retcode=1) | 277 ) + api.override_step_data('check timestamp', retcode=1) |
| OLD | NEW |