diff mbox

IOzone preprocessing: Fix wrong column mapping on graph generation

Message ID 1273152251-13954-1-git-send-email-lmr@redhat.com (mailing list archive)
State New, archived
Headers show

Commit Message

Lucas Meneghel Rodrigues May 6, 2010, 1:24 p.m. UTC
None
diff mbox

Patch

diff --git a/client/tests/iozone/postprocessing.py b/client/tests/iozone/postprocessing.py
index c995aea..3a77c83 100755
--- a/client/tests/iozone/postprocessing.py
+++ b/client/tests/iozone/postprocessing.py
@@ -384,7 +384,7 @@  class IOzonePlotter(object):
         record size vs. throughput.
         """
         datasource_2d = os.path.join(self.output_dir, '2d-datasource-file')
-        for index, label in zip(range(1, 14), _LABELS[2:]):
+        for index, label in zip(range(2, 15), _LABELS[2:]):
             commands_path = os.path.join(self.output_dir, '2d-%s.do' % label)
             commands = ""
             commands += "set title 'Iozone performance: %s'\n" % label