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