1# Copyright 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 5AUTHOR = "puthik" 6NAME = "power_LW.power_Standby_fast" 7TIME = "MEDIUM" 8TEST_CATEGORY = "Benchmark" 9TEST_CLASS = "power" 10TEST_TYPE = "server" 11ATTRIBUTES = "suite:power_dashboard" 12 13DOC = """ 14Control file for running power_Standby.fast in power lab. 15""" 16 17from autotest_lib.client.common_lib import utils 18 19args_dict = utils.args_to_dict(args) 20test = 'power_Standby' 21args = { 22 'pdash_note': args_dict.get('pdash_note', ''), 23 'tag' : 'fast_PLW', 24 'sample_hours' : 0.334, 25 'test_hours' : 0.334, 26} 27 28def run(machine): 29 host = hosts.create_host(machine) 30 job.run_test("power_LW", host=host, test=test, args=args, 31 machine=machine, tag=NAME.split('.')[1]) 32 33parallel_simple(run, machines) 34