Change test run to default to 64k blocks with 100% of attached storage
being tested.
JIRA: STORPERF-33
Change-Id: Id803d0493fb2c35691911ed79d226443a01503f3
Signed-off-by: Mark Beierl <mark.beierl@emc.com>
 
             if (workload_name.startswith("_")):
                 iodepths = [2, ]
-                blocksizes = [4096, ]
+                blocksizes = [65536, ]
             else:
                 iodepths = [1, 16, 128]
                 blocksizes = [4096, 65536, 1048576]
 
 
     def __init__(self):
         self.logger = logging.getLogger(__name__)
-        self.default_filesize = "128M"
-        self.filename = 'storperf.dat'
+        self.default_filesize = "100%"
+        self.filename = '/dev/vdb'
         self.options = {
             'ioengine': 'libaio',
             'direct': '1',
             'rw': 'read',
-            'bs': '4k',
+            'bs': '64k',
             'iodepth': '1',
             'numjobs': '1',
             'loops': '2',
             'output-format': 'json',
-            'status-interval': '60'
+            'status-interval': '600'
         }
         self.invoker = None