1 # Copyright 2017 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 from autotest_lib.server import utils 6 7 AUTHOR = "mruthven" 8 NAME = "firmware_Cr50DeepSleepStress.reboot" 9 PURPOSE = "Verify deep sleep" 10 ATTRIBUTES = "suite:cr50_stress_experimental" 11 TIME = "LONG" 12 TEST_TYPE = "server" 13 DEPENDENCIES = "servo" 14 15 DOC = """ 16 Cr50 should enter deep sleep every time the system goes into S5. Run 17 power_SuspendStress and verify the deep sleep count matches the number of 18 suspend iterations. 19 """ 20 21 args_dict = utils.args_to_dict(args) 22 servo_args = hosts.CrosHost.get_servo_arguments(args_dict) 23 24 def run(machine): 25 host = hosts.create_host(machine, servo_args=servo_args) 26 27 suspend_count = int(args_dict.get("suspend_count", 100)) 28 reset_type = args_dict.get("reset_type", "reboot") 29 30 job.run_test("firmware_Cr50DeepSleepStress", host=host, cmdline_args=args, 31 suspend_count=suspend_count, reset_type=reset_type) 32 33 parallel_simple(run, machines) 34