• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
5AUTHOR = 'gmoturu, bmahadev, krisr'
6NAME = 'android_ACTS.WifiPower'
7TIME = 'MEDIUM'
8TEST_TYPE = 'Server'
9ATTRIBUTES = 'suite:android_wifi_power'
10DEPENDENCIES = 'wifi_power_cell'
11
12DOC = """
13This test runs WiFiPower against a WiFi power test bed.
14
15"""
16
17def run(machine):
18    job.run_test('android_ACTS',
19                 testbed=hosts.create_testbed(machine),
20                 config_file='android1758-row3-rack6-wifi-power.config',
21                 testtracker_owner='android-comms-tvc@google.com',
22                 test_file='wifi_power',
23                 testtracker_project_id=733,
24		 additional_apks=[{'apk':'PMC.apk', 'package':'com.android.pmc', 'artifacts':'tests.zip'}],
25                 acts_timeout=18000)
26
27parallel_simple(run, machines)
28