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