• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
11
12DOC = '''
13Run Tast test which check WiFi roaming performance/correctness.
14'''
15
16def run(machine):
17    job.run_test('tast',
18                 host=hosts.create_host(machine),
19                 test_exprs=['("group:wificell_roam" && wificell_roam_perf)'],
20                 ignore_test_failures=True, max_run_sec=18000,
21                 command_args=args)
22
23parallel_simple(run, machines)
24