• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
5AUTHOR = 'Chromium OS team'
6NAME = 'tast_Runner.bvt'
7TIME = 'MEDIUM'
8TEST_TYPE = 'Server'
9ATTRIBUTES = '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.
14REQUIRE_SSP = False
15
16DOC = '''
17Run the Tast BVT suite.
18
19Tast is an integration-testing framework analagous to the test-running portion
20of Autotest. See https://chromium.googlesource.com/chromiumos/platform/tast/ for
21more information.
22
23This test runs Tast-based BVT tests against a remote DUT and reports failure if
24any tests (that haven't been marked flaky) fail.
25'''
26
27def run(machine):
28    job.run_test('tast_Runner',
29                 host=hosts.create_host(machine),
30                 test_exprs=['(bvt && !arc)'])
31
32parallel_simple(run, machines)
33