1 NAME = "Parallel DD" 2 AUTHOR = "Martin Bligh <mbligh (a] google.com>" 3 TIME = "MEDIUM" 4 TEST_CATEGORY = "PERFORMANCE" 5 TEST_CLASS = "HARDWARE" 6 TEST_TYPE = "CLIENT" 7 DOC = """ 8 Measures the performance of writing and reading multiple streams of files onto 9 the files system. 10 """ 11 12 # YOU NEED TO SPECIFY A FILESYSTEM 13 # fs = job.filesystem('/dev/sda3', job.tmpdir) 14 job.run_test('parallel_dd', fs=fs, fstype='ext2', iterations=5, megabytes=1000, streams=2) 15 16 17