1# Copyright 2020 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 = 'Chromium OS team' 6NAME = 'tast.wificell-atten-roam-perf' 7TIME = 'LENGTHY' 8TEST_TYPE = 'Server' 9ATTRIBUTES = 'suite:wifi_atten_roam_perf' 10MAX_RESULT_SIZE_KB = 1024 * 1024 11PY_VERSION = 3 12 13DOC = ''' 14Run Tast test which check WiFi roaming performance/correctness. 15''' 16 17def run(machine): 18 job.run_test('tast', 19 host=hosts.create_host(machine), 20 test_exprs=['("group:wificell_roam" && wificell_roam_perf)'], 21 ignore_test_failures=True, max_run_sec=18000, 22 command_args=args) 23 24parallel_simple(run, machines) 25