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