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 = "deanliao@chromium.org" 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 the Tast counterpart of suite:wifi_matfunc. 16 17The reason why we need a separate suite is because "test_that" command 18cannot run Tast tests if devserver is not presented (crbug.com/948805). 19Placing Tast tests on this suite can avoid possible regression of 20suite:wifi_matfunc. 21""" 22 23import common 24from autotest_lib.server.cros.dynamic_suite import dynamic_suite 25 26args_dict['add_experimental'] = True 27args_dict['max_runtime_mins'] = 60 28args_dict['name'] = NAME 29args_dict['job'] = job 30 31dynamic_suite.reimage_and_run(**args_dict) 32