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.example' 7TIME = 'MEDIUM' 8TEST_TYPE = 'Server' 9 10# tast.py uses binaries installed from autotest_server_package.tar.bz2. 11REQUIRE_SSP = True 12 13DOC = ''' 14Run example Tast tests. 15 16Tast is an integration-testing framework analagous to the test-running portion 17of Autotest. See https://chromium.googlesource.com/chromiumos/platform/tast/ for 18more information. 19 20This test runs all example Tast tests. 21''' 22 23def run(machine): 24 job.run_test('tast', 25 host=hosts.create_host(machine), 26 test_exprs=['example.*']) 27 28parallel_simple(run, machines) 29