1# Copyright 2020 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 = "mwiitala, Chrome OS Kernel Team" 6NAME = "debug_kernel_testing" 7PURPOSE = "Suite to run Syzkaller tests on Chrome OS devices." 8 9TIME = "SHORT" 10TEST_CATEGORY = "General" 11TEST_CLASS = "suite" 12TEST_TYPE = "Server" 13 14DOC = """ 15This suite is intended to run miscellaneous tests for 16go/cros-automated-debug-kernel-testing. Other test suites run for 17debug kernel testing (DKT) as well, but this suite allows tests to be 18added to the set without adding an entire suite. 19""" 20 21import common 22from autotest_lib.server.cros.dynamic_suite import dynamic_suite 23 24args_dict['name'] = NAME 25args_dict['job'] = job 26 27dynamic_suite.reimage_and_run(**args_dict) 28