OLD | NEW |
1 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. | 1 # Copyright (c) 2010 The Chromium OS 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 AUTHOR = "Chrome OS Team" | 5 AUTHOR = "Chrome OS Team" |
6 NAME = "power_SuspendResume" | 6 NAME = "power_SuspendResume" |
7 PURPOSE = "Verify system is stable between suspend and resume states." | 7 PURPOSE = "Verify system is stable between suspend and resume states." |
8 CRITERIA = """ | 8 CRITERIA = """ |
9 Fail if any of the test iterations fails. | 9 Fail if any of the test iterations fails. |
10 """ | 10 """ |
(...skipping 12 matching lines...) Expand all Loading... |
23 | 23 |
24 def run_resume(): | 24 def run_resume(): |
25 job.run_test('power_Resume', iterations=10, tag=_tag) | 25 job.run_test('power_Resume', iterations=10, tag=_tag) |
26 | 26 |
27 | 27 |
28 def run_sat(): | 28 def run_sat(): |
29 job.run_test('hardware_SAT', seconds=_seconds, tag=_tag) | 29 job.run_test('hardware_SAT', seconds=_seconds, tag=_tag) |
30 | 30 |
31 | 31 |
32 def run_gpu(): | 32 def run_gpu(): |
33 job.run_test('graphics_SanAngeles', iterations=2, tag=_tag) | 33 job.run_test('graphics_SanAngeles', |
| 34 iterations=2, |
| 35 tag=_tag, |
| 36 creds='$backdoor') |
34 | 37 |
35 | 38 |
36 job.parallel([run_resume], [run_sat], [run_gpu]) | 39 job.parallel([run_resume], [run_sat], [run_gpu]) |
OLD | NEW |