blob: c15689afb5d3eca19622d870717032716bc2a623 [file] [log] [blame]
Matt Malletteabbc1e2018-05-17 16:20:56 -07001# Copyright 2018 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 = "Chrome OS Team"
6NAME = "power_measurement_wrapper"
7PURPOSE = "Power testing."
8
9TIME = "LONG"
10TEST_CATEGORY = "General"
11TEST_CLASS = "suite"
12TEST_TYPE = "Server"
13
14DOC = """
15This wrapper test automates the process of power measurement while running a
16client test.
17"""
18
19import common
Matt Malletteabbc1e2018-05-17 16:20:56 -070020from autotest_lib.server.cros.dynamic_suite import dynamic_suite
21
22args_dict['add_experimental'] = True
23args_dict['name'] = NAME
24args_dict['job'] = job
25
26dynamic_suite.reimage_and_run(**args_dict)