1NAME = "LTP" 2AUTHOR = "Martin Bligh <mbligh@google.com>" 3PURPOSE = 'Verify kernel system calls are operating correctly.' 4CRITERIA = """ 5There are over 1,000 tests and each one has its own pass/failure criteria. Each 6individual test case is written from the system call's manpage. 7""" 8TIME = "MEDIUM" 9TEST_CATEGORY = "FUNCTIONAL" 10TEST_CLASS = "KERNEL" 11TEST_TYPE = "CLIENT" 12DOC = """ 13The Linux Test Project is a suite of tests. The suite is executed through a 14shell program. Most of the tests are written in C, with some in bash and Perl, 15and are designed to test various aspects of the Linux operating system. Most 16test cases will use a glibc interface if it exists, or kernel header files if 17available. 18 19For more information visit: 20 http://ltp.sourceforge.net/ 21""" 22 23job.run_test('ltp') 24