kvm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] IOzone preprocessing: Fix wrong column mapping on graph generation
@ 2010-05-06 13:24 Lucas Meneghel Rodrigues
  2010-05-06 13:39 ` [Autotest] " Martin Bligh
  0 siblings, 1 reply; 2+ messages in thread
From: Lucas Meneghel Rodrigues @ 2010-05-06 13:24 UTC (permalink / raw)
  To: autotest; +Cc: jes.sorensen, kvm

Fix a silly bug on graph generation: it was mapping the wrong
columns when plotting the 2D throughput graphs. Sorry for the
mistake.

Signed-off-by: Lucas Meneghel Rodrigues <lmr@redhat.com>
---
 client/tests/iozone/postprocessing.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

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
-- 
1.7.0.1

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2010-05-06 13:40 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-06 13:24 [PATCH] IOzone preprocessing: Fix wrong column mapping on graph generation Lucas Meneghel Rodrigues
2010-05-06 13:39 ` [Autotest] " Martin Bligh

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).