From mboxrd@z Thu Jan 1 00:00:00 1970 From: Lucas Meneghel Rodrigues Subject: [PATCH] IOzone preprocessing: Fix wrong column mapping on graph generation Date: Thu, 6 May 2010 10:24:11 -0300 Message-ID: <1273152251-13954-1-git-send-email-lmr@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Cc: jes.sorensen@redhat.com, kvm@vger.kernel.org To: autotest@test.kernel.org Return-path: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: autotest-bounces@test.kernel.org Errors-To: autotest-bounces@test.kernel.org List-Id: kvm.vger.kernel.org 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 --- 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