From patchwork Thu Apr 28 19:08:54 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lucas Meneghel Rodrigues X-Patchwork-Id: 739541 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id p3SJ9DcC020399 for ; Thu, 28 Apr 2011 19:09:14 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755897Ab1D1TJJ (ORCPT ); Thu, 28 Apr 2011 15:09:09 -0400 Received: from mx1.redhat.com ([209.132.183.28]:4660 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933441Ab1D1TJE (ORCPT ); Thu, 28 Apr 2011 15:09:04 -0400 Received: from int-mx12.intmail.prod.int.phx2.redhat.com (int-mx12.intmail.prod.int.phx2.redhat.com [10.5.11.25]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id p3SJ93FQ021355 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Thu, 28 Apr 2011 15:09:03 -0400 Received: from freedom.redhat.com (vpn-9-76.rdu.redhat.com [10.11.9.76]) by int-mx12.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id p3SJ8uZF027204; Thu, 28 Apr 2011 15:09:02 -0400 From: Lucas Meneghel Rodrigues To: autotest@test.kernel.org Cc: kvm@vger.kernel.org, Lucas Meneghel Rodrigues Subject: [PATCH 3/3] KVM test: control: Replace create_report function call Date: Thu, 28 Apr 2011 16:08:54 -0300 Message-Id: <1304017734-15836-4-git-send-email-lmr@redhat.com> In-Reply-To: <1304017734-15836-1-git-send-email-lmr@redhat.com> References: <1304017734-15836-1-git-send-email-lmr@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.25 Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter1.kernel.org [140.211.167.41]); Thu, 28 Apr 2011 19:09:14 +0000 (UTC) Following up with the previous changes. Signed-off-by: Lucas Meneghel Rodrigues --- client/tests/kvm/control | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/client/tests/kvm/control b/client/tests/kvm/control index 6437d88..eb95a33 100644 --- a/client/tests/kvm/control +++ b/client/tests/kvm/control @@ -23,6 +23,7 @@ For online docs, please refer to http://www.linux-kvm.org/page/KVM-Autotest import sys, os, logging from autotest_lib.client.common_lib import cartesian_config from autotest_lib.client.virt import virt_utils +from autotest_lib.client.tools import html_report # set English environment (command output might be localized, need to be safe) os.environ['LANG'] = 'en_US.UTF-8' @@ -69,4 +70,4 @@ parser.parse_string(str) virt_utils.run_tests(parser, job) # Generate a nice HTML report inside the job's results dir -virt_utils.create_report(kvm_test_dir, job.resultdir) +html_report.create_report(job.resultdir)