blob: d65a75f518b8d94e0a0317f81b3dd8e584a1a9ed [file] [log] [blame]
# Copyright 2021 The ChromiumOS Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
from autotest_lib.client.common_lib import utils
AUTHOR = 'The ChromiumOS Authors'
NAME = 'tast.category-camera'
TIME = 'MEDIUM'
TEST_TYPE = 'Server'
DEPENDENCIES = 'servo_state:WORKING'
ATTRIBUTES = 'suite:bvt-tast-cq-camera, suite:bvt-tast-cq-cft-camera'
MAX_RESULT_SIZE_KB = 256 * 1024
PY_VERSION = 3
METADATA = {
'contacts': ['chromeos-camera-eng@google.com'],
'bug_component': 'b:167281', # ChromeOS > Platform > Technologies > Camera
'criteria': 'Run camera tests and tests depends on camera',
}
# tast.py uses binaries installed from autotest_server_package.tar.bz2.
REQUIRE_SSP = True
DOC = '''
Run the critical Tast tests in the "camera" category.
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 Tast tests in the "camera" category that are required to pass
against a remote DUT. It fails if any individual Tast tests fail.
There are a few tests that are critical but not stable enough for cq-minimal and
cq-medium. Explicitly allowlist the following CQ staging test(s) for the camera
repos:
- camera.PlatformServiceSmoke
See http://go/tast-failures for information about investigating failures.
'''
args_dict = utils.args_to_dict(args)
assert 'servo_state:WORKING' in DEPENDENCIES
servo_args = hosts.CrosHost.get_servo_arguments(args_dict)
def run(machine):
job.run_test('tast',
host=hosts.create_host(machine, servo_args=servo_args),
test_exprs=['('
'"name:camera.PlatformServiceSmoke" || '
'"group:mainline" && '
'!informational && '
'("name:camera.*" || "group:camera_dependent")'
')'],
ignore_test_failures=False, max_run_sec=1800,
command_args=args,
clear_tpm=True,
retries=2)
parallel_simple(run, machines)