summaryrefslogtreecommitdiffstats
path: root/chromium/docs/website/site/chromium-os/testing/test-code-labs/server-side-test/control
blob: 2f70a1b2c079ada68b80be6094f9bfd6af7b4e67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Copyright information

AUTHOR = "your name, and at least one person ([ldap]@chromium.org) or a mailing list"
NAME = "power_MyBacklightTest" # test name
TIME = "SHORT"              # can be MEDIUM, LONG
TEST_CATEGORY = "Benchmark"    # can be General, Stress
TEST_CLASS = "power"    # testing area, e.g., platform, network etc
# indicating it's a server side test
TEST_TYPE = "server"
SUITE = "bvt"                 # if the test should be a part of the BVT


DOC = """
This test measures the backlight level before and after certain system events
and verifies that the backlight level has not changed.
"""


def run_system_power_MyBacklightTest(machine):
    job.run_test('power_MyBacklightTest', client_ip=machine)

# run the test in multiple machines

job.parallel_simple(run_system_power_MyBacklightTest, machines)