xref: /aosp_15_r20/external/autotest/server/site_tests/tast/control.wificell-func-ax (revision 9c5db1993ded3edbeafc8092d69fe5de2ee02df7)
1*9c5db199SXin Li# Copyright 2022 The Chromium OS Authors. All rights reserved.
2*9c5db199SXin Li# Use of this source code is governed by a BSD-style license that can be
3*9c5db199SXin Li# found in the LICENSE file.
4*9c5db199SXin Li
5*9c5db199SXin LiAUTHOR = '[email protected]'
6*9c5db199SXin LiNAME = 'tast.wificell-func-ax'
7*9c5db199SXin LiTIME = 'MEDIUM'
8*9c5db199SXin LiTEST_TYPE = 'Server'
9*9c5db199SXin LiATTRIBUTES = 'suite:wifi_matfunc_ax'
10*9c5db199SXin LiMAX_RESULT_SIZE_KB = 1024 * 1024
11*9c5db199SXin LiPY_VERSION = 3
12*9c5db199SXin Li
13*9c5db199SXin LiDOC = '''
14*9c5db199SXin LiRun the stable Tast tests for basic WiFi functions on suite:wifi_matfunc.
15*9c5db199SXin Li
16*9c5db199SXin Li"group:wificell" indicates that the test runs on a wificell fixture. Its
17*9c5db199SXin Lisub-attributes:
18*9c5db199SXin Li  * "wificell_matfunc_ax": verify 802.11ax functions using APs that support wifi6 & Wifi6e.
19*9c5db199SXin Li
20*9c5db199SXin LiTast is an integration-testing framework analagous to the test-running portion
21*9c5db199SXin Liof Autotest. See https://chromium.googlesource.com/chromiumos/platform/tast/ for
22*9c5db199SXin Limore information.
23*9c5db199SXin Li
24*9c5db199SXin LiSee http://go/tast-failures for information about investigating failures.
25*9c5db199SXin Li'''
26*9c5db199SXin Li
27*9c5db199SXin Lidef run(machine):
28*9c5db199SXin Li    job.run_test('tast',
29*9c5db199SXin Li                 host=hosts.create_host(machine),
30*9c5db199SXin Li                 test_exprs=['("group:wificell" && wificell_func_ax)'],
31*9c5db199SXin Li                 ignore_test_failures=False, max_run_sec=10800,
32*9c5db199SXin Li                 command_args=args)
33*9c5db199SXin Li
34*9c5db199SXin Liparallel_simple(run, machines)
35