• 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 = 'krisr, bmahadev, gmoturu'
6NAME = 'android_ACTS.WiFi_scanner'
7TIME = 'MEDIUM'
8TEST_TYPE = 'Server'
9ATTRIBUTES = 'suite:android_wifi_scanner'
10
11DOC = """
12This test runs WiFi scanner tests against a WiFi test bed.
13
14"""
15
16def run(machine):
17    job.run_test('android_ACTS',
18                 testbed=hosts.create_testbed(machine),
19                 config_file='wifi_scanner.config',
20                 testtracker_owner='android-comms-tvc@google.com',
21                 test_file='wifi_scanner',
22                 testtracker_project_id=733,
23                 acts_timeout=18000)
24
25parallel_simple(run, machines)
26