You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
650 B
22 lines
650 B
AUTHOR = 'Martin Bligh (mbligh@google.com)'
|
|
NAME = 'Disktest'
|
|
PURPOSE = 'Verify the integrity of the disk and disk controller.'
|
|
CRITERIA = """
|
|
This test reads back all data written during the test, and if the data it reads
|
|
does not match the data it wrote, the test fails.
|
|
"""
|
|
DOC = '''\
|
|
Using unique signatures for each block and each iteration of the test,
|
|
different patterns will be tested. Designed to check both the disk and disk
|
|
controller for corruption issues.
|
|
|
|
It writes 50MB/s of 500KB size ops.
|
|
'''
|
|
ATTRIBUTES = "suite:hwqual"
|
|
TIME = 'MEDIUM'
|
|
TEST_CATEGORY = 'Kernel'
|
|
TEST_TYPE = 'client'
|
|
TEST_CLASS = 'Hardware'
|
|
|
|
job.run_test('disktest')
|