OLD | NEW |
---|---|
(Empty) | |
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 | |
3 # found in the LICENSE file. | |
4 | |
5 AUTHOR = "Chrome OS Team" | |
6 NAME = "power_ARMSettings" | |
7 PURPOSE = "Verify that power realted settings are set correctly." | |
8 CRITERIA = """ | |
9 This test will fail if any of the power related settings aren't set to | |
10 expected values. | |
11 """ | |
12 TIME = "SHORT" | |
13 TEST_CATEGORY = "Functional" | |
14 TEST_CLASS = "power" | |
15 TEST_TYPE = "client" | |
16 | |
17 DOC = """ | |
18 This test reads various power related settings such as CPU MSRs, PCIe BARs, | |
19 MCH BARs etc. to determine whether they have been set to the expected values | |
20 from power standpoint. | |
Sameer Nanda
2011/02/25 00:30:09
Lets remove MCH, PCIe and CPU MSRs from the descri
Simon Que
2011/02/25 00:49:58
Done.
| |
21 """ | |
22 | |
23 job.run_test('power_ARMSettings') | |
OLD | NEW |