1# Copyright (c) 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 = "ChromeOS Team" 6NAME = "cellular_modem_fw" 7TIME = "SHORT" 8TEST_CATEGORY = "Functional" 9TEST_CLASS = "suite" 10TEST_TYPE = "server" 11 12DOC = """ 13Run automated cellular tests to ensure that cellular functions has not regressed. 14@param build: The name of the image to test. 15 Ex: octopus-release/R99-14469.12.0 16@param board: The board to test on. Ex: octopus 17@param pool: The pool of machines to utilize for scheduling. If pool=None 18 board is used. 19@param check_hosts: require appropriate live hosts to exist in the lab. 20@param SKIP_IMAGE: (optional) If present and True, don't re-image devices. 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