1# Copyright (c) 2013 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 5NAME = "kernel_ltp" 6AUTHOR = "The Chromium OS Authors,chromeos-kernel-test@google.com" 7TIME = "MEDIUM" 8# TODO (jimishs) - crbug.com/354547. 9# Uncomment the suite line below once the test can be properly ran in the lab. 10#ATTRIBUTES = "suite:kernel_weekly_regression" 11TEST_CATEGORY = "FUNCTIONAL" 12TEST_CLASS = "KERNEL" 13TEST_TYPE = "CLIENT" 14DOC = """ 15Invokes custom ChromeOS kernel unittests LTP cmdfile. 16Runs the sequence of all tests in the LTP cmdfile. 17""" 18 19cmd_file_list = ['cros_kernel_unittests'] 20ltp_args = '-f "%s"' % ','.join(cmd_file_list) 21 22job.run_test('kernel_LTP', args=ltp_args) 23