Otabek Kasimov | 832d916 | 2020-07-27 19:24:57 -0700 | [diff] [blame] | 1 | # Copyright (c) 2020 The Chromium OS Authors. All rights reserved. |
| 2 | # Use of this source code is governed by a BSD-style license that can be |
| 3 | # found in the LICENSE file. |
| 4 | |
| 5 | # Device is not fixable due issues with hardware and has to be replaced |
| 6 | DEVICE_STATE_NEEDS_REPLACEMENT = 'needs_replacement' |
| 7 | # Device required manual attention to be fixed |
| 8 | DEVICE_STATE_NEEDS_MANUAL_REPAIR = 'needs_manual_repair' |
Gregory Nisbet | d3007d2 | 2020-09-02 12:04:07 -0700 | [diff] [blame] | 9 | |
Garry Wang | 4992b5a | 2020-09-25 17:23:31 -0700 | [diff] [blame] | 10 | # Timeout for verifiers. |
Garry Wang | f150276 | 2020-10-13 17:00:52 -0700 | [diff] [blame] | 11 | SHORT_VERIFY_TIMEOUT_SEC = 60 |
Garry Wang | 4992b5a | 2020-09-25 17:23:31 -0700 | [diff] [blame] | 12 | VERIFY_TIMEOUT_SEC = 60 * 5 |
Garry Wang | f150276 | 2020-10-13 17:00:52 -0700 | [diff] [blame] | 13 | LONG_VERIFY_TIMEOUT_SEC = 60 * 20 |
Gregory Nisbet | d3007d2 | 2020-09-02 12:04:07 -0700 | [diff] [blame] | 14 | |
Garry Wang | 4992b5a | 2020-09-25 17:23:31 -0700 | [diff] [blame] | 15 | # Timeout for repair actions. |
| 16 | SHORT_REPAIR_TIMEOUT_SEC = 60 |
| 17 | REPAIR_TIMEOUT_SEC = 60 * 10 |
| 18 | LONG_REPAIR_TIMEOUT_SEC = 60 * 30 |
Otabek Kasimov | 58e2256 | 2020-11-03 17:17:41 -0800 | [diff] [blame] | 19 | |
| 20 | # Minimum battery level for the good DUT. |
| 21 | MIN_BATTERY_LEVEL = 80.0 |