1# Copyright 2021 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 = 'Chromium OS team' 6NAME = 'tast.hps-perbuild' 7TIME = 'SHORT' 8TEST_TYPE = 'Server' 9ATTRIBUTES = 'suite:hps_perf_perbuild' 10MAX_RESULT_SIZE_KB = 1024 * 1024 11PY_VERSION = 3 12 13DOC = ''' 14Run the Tast HPS test suite on HPS dev boards. 15 16Tast is an integration-testing framework analagous to the test-running portion 17of Autotest. See https://chromium.googlesource.com/chromiumos/platform/tast/ for 18more information. 19 20See http://go/tast-failures for information about investigating failures. 21''' 22 23def run(machine): 24 job.run_test('tast', 25 host=hosts.create_host(machine), 26 test_exprs=['("group:hps" && hps_perbuild && !hps_devboard_p2_sweetberry)'], 27 ignore_test_failures=True, 28 max_run_sec=7200, # 2 hours 29 command_args=args) 30 31parallel_simple(run, machines) 32