diff mbox

[3/3] KVM test: control: Replace create_report function call

Message ID 1304017734-15836-4-git-send-email-lmr@redhat.com (mailing list archive)
State New, archived
Headers show

Commit Message

Lucas Meneghel Rodrigues April 28, 2011, 7:08 p.m. UTC
Following up with the previous changes.

Signed-off-by: Lucas Meneghel Rodrigues <lmr@redhat.com>
---
 client/tests/kvm/control |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)
diff mbox

Patch

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)