blob: 0aa7cd510df85d191080717b80ca2a2656d75165 [file] [log] [blame]
NAME = "LTP"
AUTHOR = "Martin Bligh <mbligh@google.com>"
PURPOSE = 'Verify kernel system calls are operating correctly.'
CRITERIA = """
There are over 1,000 tests and each one has it's own pass/failure criteria. Each
individual test case is written from the system call's manpage.
"""
SUITE = "kernel_per-build_regression"
EXPERIMENTAL = "True"
TIME = "MEDIUM"
TEST_CATEGORY = "FUNCTIONAL"
TEST_CLASS = "KERNEL"
TEST_TYPE = "CLIENT"
DOC = """
The Linux Test Project is a suite of tests. The suite is executed through a
shell program. Most of the tests are written in C, with some in bash and Perl,
and are designed to test various aspects of the Linux operating system. Most
test cases will use a glibc interface if it exists, or kernel header files if
available.
For more information visit:
http://ltp.sourceforge.net/
"""
# A list of cmdfiles enabled to run.
cmd_file_list = ['syscalls']
# A single expression used in a grep to filter tests from alltests.
test_name_re = 'nanosleep01'
ltp_args = '-f "%s"' % ','.join(cmd_file_list)
if test_name_re:
ltp_args += ' -s "%s"' % test_name_re
job.run_test('ltp', args=ltp_args)