You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.4 KiB
40 lines
1.4 KiB
# Copyright 2020 The Chromium OS Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
AUTHOR = 'Chromium OS team'
|
|
NAME = 'tast.arc-data-collector'
|
|
TIME = 'MEDIUM'
|
|
TEST_TYPE = 'Server'
|
|
ATTRIBUTES = 'suite:bvt-tast-android-pfq'
|
|
MAX_RESULT_SIZE_KB = 50 * 1024
|
|
|
|
# tast.py uses binaries installed from autotest_server_package.tar.bz2.
|
|
REQUIRE_SSP = True
|
|
|
|
DOC = '''
|
|
Run the Tast ARC data collector test suite.
|
|
|
|
Tast is an integration-testing framework analagous to the test-running portion
|
|
of Autotest. See https://chromium.googlesource.com/chromiumos/platform/tast/ for
|
|
more information.
|
|
|
|
This test runs Android-dependent Tast-based tests in android-pfq that collect
|
|
various data specific for particular Android build id. This Android build first
|
|
appears in android-pfq and collected data will be used further during the build of
|
|
official test and release images that would contain this build.
|
|
|
|
|
|
See http://go/tast-failures for information about investigating failures.
|
|
'''
|
|
|
|
def run(machine):
|
|
# TODO(crbug.com/992303): Fix android condition.
|
|
job.run_test('tast',
|
|
host=hosts.create_host(machine),
|
|
test_exprs=['("group:arc-data-collector")'],
|
|
ignore_test_failures=False, max_run_sec=1200,
|
|
command_args=args)
|
|
|
|
parallel_simple(run, machines)
|