1# Copyright 2021 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 = 'ARC Engprod Team' 6NAME = 'tast.mtp' 7TIME = 'MEDIUM' 8TEST_TYPE = 'Server' 9ATTRIBUTES = 'suite:mtp' 10PY_VERSION = 3 11 12# tast.py uses binaries installed from autotest_server_package.tar.bz2. 13REQUIRE_SSP = True 14 15DOC = """ 16This suite is used to run tast tests with 'mtp' group which verify that android app can 17read files on external Android device with MTP (Media Transfer Protocol). 18""" 19 20def run(machine): 21 job.run_test('tast', 22 host=hosts.create_host(machine), 23 test_exprs=['("group:mtp")'], 24 ignore_test_failures=True, max_run_sec=10800, 25 command_args=args) 26parallel_simple(run, machines) 27