33 lines
		
	
	
		
			952 B
		
	
	
	
		
			Plaintext
		
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			952 B
		
	
	
	
		
			Plaintext
		
	
	
	
# Copyright (c) 2020 The Chromium OS Authors. All rights reserved.
 | 
						|
# Use of this source code is governed by a BSD-style license that can be
 | 
						|
# found in the LICENSE file.
 | 
						|
 | 
						|
AUTHOR = "deanliao@chromium.org"
 | 
						|
NAME = "wifi_func_tast"
 | 
						|
PURPOSE = "Test basic WiFi functionalities using Tast framework."
 | 
						|
 | 
						|
TIME = "SHORT"
 | 
						|
TEST_CATEGORY = "General"
 | 
						|
TEST_CLASS = "suite"
 | 
						|
TEST_TYPE = "Server"
 | 
						|
 | 
						|
DOC = """
 | 
						|
The suite is a placeholder for new WiFi Tast tests.
 | 
						|
 | 
						|
It is the landing suite for new/ported WiFi Tast tests. After a test is
 | 
						|
stable enough (say at least the same pass rate compare to Autotest
 | 
						|
version), the test can be moved to suite:wifi_matfunc.
 | 
						|
 | 
						|
Refer to https://goto.google.com/cros-wifi-tast-suites for detail.
 | 
						|
"""
 | 
						|
 | 
						|
import common
 | 
						|
from autotest_lib.server.cros.dynamic_suite import dynamic_suite
 | 
						|
 | 
						|
args_dict['add_experimental'] = True
 | 
						|
args_dict['max_runtime_mins'] = 60
 | 
						|
args_dict['name'] = NAME
 | 
						|
args_dict['job'] = job
 | 
						|
 | 
						|
dynamic_suite.reimage_and_run(**args_dict)
 |