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 = 'bmahadev, gmoturu' 6 NAME = 'android_ACTS.WifiSoftApStress' 7 TIME = 'LONG' 8 TEST_TYPE = 'Server' 9 ATTRIBUTES = 'suite:android_wifi_softApStress' 10 11 DOC = """ 12 This test runs softAP stress test. 13 14 """ 15 16 def run(machine): 17 job.run_test('android_ACTS', 18 testbed=hosts.create_testbed(machine), 19 config_file='wifi_softApStress.config', 20 testtracker_owner='android-comms-tvc (a] google.com', 21 test_file='wifi_softApStress', 22 additional_cmd_line_params="-ti 1000", 23 acts_timeout=72000) 24 25 parallel_simple(run, machines) 26