You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
765 B
28 lines
765 B
# Copyright (c) 2014 The Chromium OS Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
import time
|
|
from autotest_lib.server import utils
|
|
|
|
AUTHOR = "dbasehore, snanda"
|
|
NAME = "power_RPMTest"
|
|
TIME = "SHORT"
|
|
TEST_CATEGORY = "Functional"
|
|
TEST_CLASS = "power"
|
|
TEST_TYPE = "server"
|
|
|
|
DOC = """
|
|
This tests that the power supply for a device can successfully change state.
|
|
"""
|
|
|
|
args_dict = utils.args_to_dict(args)
|
|
servo_args = hosts.CrosHost.get_servo_arguments(args_dict)
|
|
|
|
def run(machine):
|
|
host = hosts.create_host(machine, servo_args=servo_args)
|
|
job.run_test('power_RPMTest', verify=True, host=host,
|
|
power_sequence=[False, True])
|
|
|
|
parallel_simple(run, machines)
|