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-func-stable'
7TIME = 'MEDIUM'
8TEST_TYPE = 'Server'
9ATTRIBUTES = 'suite:wifi_matfunc'
10MAX_RESULT_SIZE_KB = 1024 * 1024
11
12DOC = '''
13Run the stable Tast tests for basic WiFi functions on suite:wifi_matfunc.
14
15"group:wificell" indicates that the test runs on a wificell fixture. Its
16sub-attributes:
17  * "wificell_func": the test is used to verify basic WiFi functionality.
18  * "wificell_unstable": the test is unstable or yet to be verified as stable.
19
20Tast is an integration-testing framework analagous to the test-running portion
21of Autotest. See https://chromium.googlesource.com/chromiumos/platform/tast/ for
22more information.
23
24See http://go/tast-failures for information about investigating failures.
25'''
26
27def run(machine):
28    job.run_test('tast',
29                 host=hosts.create_host(machine),
30                 test_exprs=['("group:wificell" && wificell_func && '
31                             '!wificell_unstable)'],
32                 ignore_test_failures=True, max_run_sec=10800,
33                 command_args=args)
34
35parallel_simple(run, machines)
36