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_ota_avl" 7TIME = "SHORT" 8TEST_CATEGORY = "Functional" 9TEST_CLASS = "suite" 10TEST_TYPE = "server" 11 12DOC = """ 13Run automated Cellular tests to ensure that 4g/5g 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 SKIP_IMAGE: (optional) If present and True, don't re-image devices. 20""" 21 22import common 23from autotest_lib.server.cros.dynamic_suite import dynamic_suite 24 25args_dict['max_runtime_mins'] = 20 26args_dict['job'] = job 27args_dict['add_experimental'] = True 28args_dict['name'] = 'cellular_ota' 29 30dynamic_suite.reimage_and_run(**args_dict) 31