[kvm-unit-tests PATCH] powerpc/run: if qemu-system-ppc64 not available try for qemu-kvm

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



In RHEV 4.1 with RHEL7.3 qemu-system-ppc64 is not available and the tests
skips with "qemu-system-ppc64 not found." instead qemu-kvm is available in
/usr/libexec and can be used to proceed the test.

Signed-off-by: Balamuruhan S <bala24@xxxxxxxxxxxxxxxxxx>
---
 powerpc/run | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

diff --git a/powerpc/run b/powerpc/run
index d92608e..ea79d35 100755
--- a/powerpc/run
+++ b/powerpc/run
@@ -32,8 +32,16 @@ qemu="${QEMU:-qemu-system-$ARCH_NAME}"
 qpath=$(which $qemu 2>/dev/null)
 
 if [ -z "$qpath" ]; then
-	echo $qemu not found.
-	exit 2
+    # In RHEV 4.1 with RHEL7.3 qemu-system-ppc64 is not available
+    # instead qemu-kvm is available in /usr/libexec
+    echo $qemu not found trying for qemu-kvm
+    PATH=$PATH:/usr/libexec
+    qemu="${QEMU:-qemu-kvm}"
+    qpath=$(which $qemu 2>/dev/null)
+    if [ -z "$qpath" ]; then
+        echo $qemu not found.
+        exit 2
+    fi
 fi
 
 if ! $qemu -machine '?' 2>&1 | grep 'pseries' > /dev/null; then
-- 
2.7.4




[Index of Archives]     [KVM ARM]     [KVM ia64]     [KVM ppc]     [Virtualization Tools]     [Spice Development]     [Libvirt]     [Libvirt Users]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite Questions]     [Linux Kernel]     [Linux SCSI]     [XFree86]

  Powered by Linux