xref: /aosp_15_r20/external/autotest/autotest_lib/test_suites/control.wifi_func_tast (revision 9c5db1993ded3edbeafc8092d69fe5de2ee02df7)
1# Copyright (c) 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 = "[email protected]"
6NAME = "wifi_func_tast"
7PURPOSE = "Test basic WiFi functionalities using Tast framework."
8
9TIME = "SHORT"
10TEST_CATEGORY = "General"
11TEST_CLASS = "suite"
12TEST_TYPE = "Server"
13
14DOC = """
15The suite is a placeholder for new WiFi Tast tests.
16
17It is the landing suite for new/ported WiFi Tast tests. After a test is
18stable enough (say at least the same pass rate compare to Autotest
19version), the test can be moved to suite:wifi_matfunc.
20
21Refer to https://goto.google.com/cros-wifi-tast-suites for detail.
22"""
23
24import common
25from autotest_lib.server.cros.dynamic_suite import dynamic_suite
26
27args_dict['add_experimental'] = True
28args_dict['max_runtime_mins'] = 60
29args_dict['name'] = NAME
30args_dict['job'] = job
31
32dynamic_suite.reimage_and_run(**args_dict)
33