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_Runner.bvt' 7 TIME = 'MEDIUM' 8 TEST_TYPE = 'Server' 9 ATTRIBUTES = 'suite:bvt-perbuild' 10 11 # Disable server-side packaging, which incurs additional setup overhead and 12 # causes tests to run within containers that don't automatically have access to 13 # the required Tast-related files in /opt/infra-tools. 14 REQUIRE_SSP = False 15 16 DOC = ''' 17 Run the Tast BVT suite. 18 19 Tast is an integration-testing framework analagous to the test-running portion 20 of Autotest. See https://chromium.googlesource.com/chromiumos/platform/tast/ for 21 more information. 22 23 This test runs Tast-based BVT tests against a remote DUT and reports failure if 24 any tests (that haven't been marked flaky) fail. 25 ''' 26 27 def run(machine): 28 job.run_test('tast_Runner', 29 host=hosts.create_host(machine), 30 test_exprs=['(bvt && !arc)']) 31 32 parallel_simple(run, machines) 33