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 = 'zsm, ChromeOS Kernel Team' 6NAME = 'tast.syzcorpus' 7TIME = 'MEDIUM' 8TEST_TYPE = 'Server' 9ATTRIBUTES = 'suite:syzcorpus' 10MAX_RESULT_SIZE_KB = 1024 * 1024 11PY_VERSION = 3 12 13# tast.py uses binaries installed from autotest_server_package.tar.bz2. 14REQUIRE_SSP = True 15 16DOC = ''' 17Run the Tast test(s) to run Syzkaller reproducers to test ChromeOS Kernels. 18This is a regression test suite for the kernel(both core and drivers). 19See https://github.com/dvyukov/syzkaller-repros for more information. 20 21Tast is an integration-testing framework analogous to the test-running portion 22of Autotest. See https://chromium.googlesource.com/chromiumos/platform/tast/ 23for more information. 24See http://go/tast-failures for information about investigating failures. 25''' 26def run(machine): 27 job.run_test('tast', 28 host=hosts.create_host(machine), 29 test_exprs=['("group:syzcorpus")'], 30 ignore_test_failures=False, max_run_sec=3600, 31 command_args=args) 32parallel_simple(run, machines) 33