1 # Copyright 2018 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 5 AUTHOR = 'Chromium OS team' 6 NAME = 'tast.crosbolt-perbuild' 7 TIME = 'MEDIUM' 8 TEST_TYPE = 'Server' 9 ATTRIBUTES = 'suite:crosbolt_perf_perbuild' 10 MAX_RESULT_SIZE_KB = 50 * 1024 11 12 # tast.py uses binaries installed from autotest_server_package.tar.bz2. 13 REQUIRE_SSP = True 14 15 DOC = ''' 16 Run the Tast crosbolt performance test suite. 17 18 Tast is an integration-testing framework analagous to the test-running portion 19 of Autotest. See https://chromium.googlesource.com/chromiumos/platform/tast/ for 20 more information. 21 22 This test runs Tast-based crosbolt performance tests against a remote DUT. 23 It fails if any individual Tast tests fail. 24 25 See http://go/tast-failures for information about investigating failures. 26 ''' 27 28 def run(machine): 29 job.run_test('tast', 30 host=hosts.create_host(machine), 31 test_exprs=['(!disabled && "group:crosbolt" && ' 32 'crosbolt_perbuild)'], 33 ignore_test_failures=False) 34 35 parallel_simple(run, machines) 36