Home | History | Annotate | Download | only in power_CheckAfterSuspend
      1 # Copyright (c) 2013 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 AUTHOR = "The Chromium OS Authors"
      6 NAME = "power_CheckAfterSuspend.per_build"
      7 ATTRIBUTES = "suite:jailed_build"
      8 SUITE = "jailed_build"
      9 PURPOSE = "Check of the system state after S3"
     10 CRITERIA = "Check that the system is in the expected state after S3 Resume."
     11 TIME = "SHORT"
     12 TEST_CATEGORY = "Functional"
     13 TEST_CLASS = "Hardware"
     14 TEST_TYPE = "Client"
     15 
     16 DOC = """
     17     A check of the state of the system after S3 Resume
     18 """
     19 
     20 # Comma-separated list of test names to run before and after the suspend.
     21 tests = ['audio_Aplay', 'hardware_TPMCheck']
     22 
     23 
     24 dict_args = utils.args_to_dict(args)
     25 iterations = int(dict_args.get('iterations', 1))
     26 
     27 
     28 job.run_test('power_CheckAfterSuspend', tests=tests, iterations=iterations)
     29