• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright (c) 2012 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 = "Chrome OS Team"
8NAME = "platform_CloseOpenLid"
9PURPOSE = "Test suspend/resume in response to lid events."
10TIME = "LONG"
11TEST_CATEGORY = "Functional"
12TEST_CLASS = "platform"
13TEST_TYPE = "server"
14
15DOC = """
16This test uses servo to simulate lid close and open events. Device state is
17verified by pinging."""
18
19args_dict = utils.args_to_dict(args)
20servo_args = hosts.CrosHost.get_servo_arguments(args_dict)
21
22def run(machine):
23    host = hosts.create_host(machine, servo_args=servo_args)
24    job.run_test("platform_CloseOpenLid", host=host, disable_sysinfo=True)
25
26parallel_simple(run, machines)
27