From: Eduardo Habkost <ehabkost@xxxxxxxxxx> The common (or only) case where we have a 'qemu' directory (old KVM versions) also contains a 'kvm' directory, so the detection of the 'old layout' code was not working. Fix this by removing the 'and not has_kvm_dir' condition. Signed-off-by: Eduardo Habkost <ehabkost@xxxxxxxxxx> --- client/tests/kvm/kvm_utils.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/client/tests/kvm/kvm_utils.py b/client/tests/kvm/kvm_utils.py index 1967ddd..d135979 100644 --- a/client/tests/kvm/kvm_utils.py +++ b/client/tests/kvm/kvm_utils.py @@ -445,7 +445,7 @@ def check_kvm_source_dir(source_dir): os.chdir(source_dir) has_qemu_dir = os.path.isdir('qemu') has_kvm_dir = os.path.isdir('kvm') - if has_qemu_dir and not has_kvm_dir: + if has_qemu_dir: logging.debug("qemu directory detected, source dir layout 1") return 1 if has_kvm_dir and not has_qemu_dir: -- 1.7.2.3 -- 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