1 # Copyright (c) 2014 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 5 NAME = 'hardware_StorageFio.bvt' 6 AUTHOR = 'puthik' 7 PURPOSE = 'Make sure that hardware StorageFio work' 8 TIME = 'FAST' 9 TEST_TYPE = 'client' 10 ATTRIBUTES = "suite:experimental" 11 SUITE = 'experimental' 12 JOB_RETRIES = 2 13 14 DOC = """ 15 This test uses FIO test to make sure that test work correctly. 16 Use following test over 64 MB area. 17 - QD4 64K random write 18 - QD4 64K random read 19 - QD1 512K seq write 20 - QD1 512K seq read 21 """ 22 23 job.run_test(url=NAME.split('.')[0], filesize=64 * 1024 * 1024, 24 tag=NAME.split('.')[1], requirements = [('bvt_job', [])], 25 constraints=[ 26 '_64k_read_read_clat_max <= 2000000', 27 '_64k_write_write_clat_max <= 2000000', 28 '_seq_read_read_bw >= 5 * 1024', 29 '_seq_write_write_bw >= 5 * 1024' 30 ]) 31