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 = "Chrome OS Team" 6NAME = "faft_cr50_pvt_tast" 7PURPOSE = "Suite to test Cr50 (prepvt) firmware functionality 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:faft_cr50_pvt. 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:faft_cr50_pvt. 21 22Note that the prevpt and pvt suites are identical. 23The two names are to make searches for faft_cr50_p* include Tast results. 24""" 25 26import common 27from autotest_lib.server.cros.dynamic_suite import dynamic_suite 28 29args_dict['add_experimental'] = True 30args_dict['max_runtime_mins'] = 60 31args_dict['name'] = NAME 32args_dict['job'] = job 33 34dynamic_suite.reimage_and_run(**args_dict) 35