1*9c5db199SXin LiAUTHOR = 'Martin Bligh ([email protected])' 2*9c5db199SXin LiNAME = 'Disktest' 3*9c5db199SXin LiPURPOSE = 'Verify the integrity of the disk and disk controller.' 4*9c5db199SXin LiCRITERIA = """ 5*9c5db199SXin LiThis test reads back all data written during the test, and if the data it reads 6*9c5db199SXin Lidoes not match the data it wrote, the test fails. 7*9c5db199SXin Li""" 8*9c5db199SXin LiDOC = '''\ 9*9c5db199SXin LiUsing unique signatures for each block and each iteration of the test, 10*9c5db199SXin Lidifferent patterns will be tested. Designed to check both the disk and disk 11*9c5db199SXin Licontroller for corruption issues. 12*9c5db199SXin Li 13*9c5db199SXin LiIt writes 50MB/s of 500KB size ops. 14*9c5db199SXin Li''' 15*9c5db199SXin LiATTRIBUTES = "suite:hwqual" 16*9c5db199SXin LiTIME = 'MEDIUM' 17*9c5db199SXin LiTEST_CATEGORY = 'Kernel' 18*9c5db199SXin LiTEST_TYPE = 'client' 19*9c5db199SXin LiTEST_CLASS = 'Hardware' 20*9c5db199SXin Li 21*9c5db199SXin Lijob.run_test('disktest') 22