1AUTHOR = "[email protected]" 2NAME = "wifi_matfunc_ax" 3PURPOSE = "Run WiFi 802.11ax tests with APs that support wifi6 & wifi6e." 4 5TIME = "SHORT" 6TEST_CATEGORY = "General" 7TEST_CLASS = "suite" 8TEST_TYPE = "Server" 9 10DOC = """ 11This is an example of a dynamic test suite. 12 13@param build: The name of the image to test. 14 Ex: octopus-release/R99-14469.12.0 15@param board: The board to test on. Ex: octopus 16@param pool: The pool of machines to utilize for scheduling. If pool=None 17 board is used. 18@param check_hosts: require appropriate live hosts to exist in the lab. 19@param SKIP_IMAGE: (optional) If present and True, don't re-image devices. 20@param file_bugs: If True your suite will file bugs on failures. 21@param max_run_time: Amount of time each test shoud run in minutes. 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