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_LoadTest_1hour" 7TIME = "LONG" 8TEST_CATEGORY = "Benchmark" 9TEST_CLASS = "power" 10TEST_TYPE = "server" 11ATTRIBUTES = "suite:power_dashboard" 12PY_VERSION = 3 13 14DOC = """ 15Control file for running power_LoadTest.1hour in power lab. 16""" 17 18from autotest_lib.client.common_lib import utils 19 20args_dict = utils.args_to_dict(args) 21test = 'power_LoadTest' 22args = { 23 'pdash_note': args_dict.get('pdash_note', ''), 24 'tag' : '1hour_PLW', 25 'loop_time' : 3600, 26 'loop_count' : 1, 27 'test_low_batt_p' : 6, 28} 29 30def run(machine): 31 host = hosts.create_host(machine) 32 job.run_test("power_LW", host=host, test=test, args=args, 33 machine=machine, tag=NAME.split('.')[1]) 34 35parallel_simple(run, machines) 36