Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(20)

Side by Side Diff: client/site_tests/power_SuspendResume/control

Issue 3137016: graphics_SanAngeles doesn't need to log in (Closed) Base URL: http://src.chromium.org/git/autotest.git
Patch Set: log in via the backdoor, to reduce potential failurea Created 10 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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])
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698