kvm_utils.get_path() allows using absolute as well as relative paths. Signed-off-by: Michael Goldish <mgoldish@xxxxxxxxxx> --- client/tests/kvm/kvm_vm.py | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/client/tests/kvm/kvm_vm.py b/client/tests/kvm/kvm_vm.py index ee6796b..e1f5cad 100755 --- a/client/tests/kvm/kvm_vm.py +++ b/client/tests/kvm/kvm_vm.py @@ -270,12 +270,12 @@ class VM: # {fat:floppy:}/path/. However vvfat is not usually recommended floppy = params.get("floppy") if floppy: - floppy = os.path.join(root_dir, floppy) + floppy = kvm_utils.get_path(root_dir, floppy) qemu_cmd += " -fda %s" % floppy tftp = params.get("tftp") if tftp: - tftp = os.path.join(root_dir, tftp) + tftp = kvm_utils.get_path(root_dir, tftp) qemu_cmd += " -tftp %s" % tftp extra_params = params.get("extra_params") -- 1.5.4.1 -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html