From: Richard W.M. Jones Date: Thu, 29 Jun 2017 09:07:38 +0000 (+0100) Subject: Print 'qemu' fact when running in qemu environment on POWER 9 (RHBZ#1455676). X-Git-Tag: v1.16~10 X-Git-Url: http://git.annexia.org/?a=commitdiff_plain;h=15314ad0a6e3764f070b60f6df02a2f881b09fce;hp=3a3ed10c4ce2185d708c8c3a10dd6a71ca64e777;p=virt-what.git Print 'qemu' fact when running in qemu environment on POWER 9 (RHBZ#1455676). Thanks Nageswara R. Sastry --- diff --git a/tests/test-ppc64-kvm.sh b/tests/test-ppc64-kvm.sh index c691c96..3a90429 100755 --- a/tests/test-ppc64-kvm.sh +++ b/tests/test-ppc64-kvm.sh @@ -18,7 +18,8 @@ root=tests/ppc64-kvm output="$(./virt-what --test-root=$root 2>&1)" -expected="ibm_power-kvm" +expected="qemu +ibm_power-kvm" if [ "$output" != "$expected" ]; then echo "$0: test failed because output did not match expected" diff --git a/virt-what.in b/virt-what.in index 1a373ed..aee10cf 100644 --- a/virt-what.in +++ b/virt-what.in @@ -295,6 +295,9 @@ if ! "$skip_qemu_kvm"; then # another CPUID leaf for non-accelerated qemu. if grep -q 'QEMU' "${root}/proc/cpuinfo"; then echo qemu + # https://bugzilla.redhat.com/show_bug.cgi?id=1455676#c6 + elif grep -q 'emulated by qemu' "${root}/proc/cpuinfo"; then + echo qemu fi fi fi