Instead of hard coding the path to qemu-img on the
unattended_install script, let's pick it up from the
test parameters.

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

diff --git a/client/tests/kvm/scripts/unattended.py 
b/client/tests/kvm/scripts/unattended.py
index 2667649..562d317 100755
--- a/client/tests/kvm/scripts/unattended.py
+++ b/client/tests/kvm/scripts/unattended.py
@@ -53,7 +53,7 @@ class UnattendedInstall(object):
         cdrom_iso = os.environ['KVM_TEST_cdrom']
         self.unattended_file = os.environ['KVM_TEST_unattended_file']
 
-        self.qemu_img_bin = os.path.join(kvm_test_dir, 'qemu-img')
+        self.qemu_img_bin = os.environ['KVM_TEST_qemu_img_binary']
         self.cdrom_iso = os.path.join(kvm_test_dir, cdrom_iso)
         self.floppy_mount = tempfile.mkdtemp(prefix='floppy_', dir='/tmp')
         self.cdrom_mount = tempfile.mkdtemp(prefix='cdrom_', dir='/tmp')
-- 
1.6.5.2

--
To unsubscribe from this list: send the line "unsubscribe kvm" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to