1# Copyright 2022 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 = '[email protected]' 6NAME = 'tast.wificell-func-ax' 7TIME = 'MEDIUM' 8TEST_TYPE = 'Server' 9ATTRIBUTES = 'suite:wifi_matfunc_ax' 10MAX_RESULT_SIZE_KB = 1024 * 1024 11PY_VERSION = 3 12 13DOC = ''' 14Run the stable Tast tests for basic WiFi functions on suite:wifi_matfunc. 15 16"group:wificell" indicates that the test runs on a wificell fixture. Its 17sub-attributes: 18 * "wificell_matfunc_ax": verify 802.11ax functions using APs that support wifi6 & Wifi6e. 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_ax)'], 31 ignore_test_failures=False, max_run_sec=10800, 32 command_args=args) 33 34parallel_simple(run, machines) 35