From: Anthony PERARD Date: Thu, 30 Sep 2021 16:17:19 +0000 (+0100) Subject: automation: switch GitLab x86 smoke test to use PV 64bit binary X-Git-Tag: archive/raspbian/4.16.0+51-g0941d6cb-1+rpi1~2^2~42^2~144 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=5d15f905b9252d801101af0279fbedb0c50dc241;p=xen.git automation: switch GitLab x86 smoke test to use PV 64bit binary Xen is now built without CONFIG_PV32 by default and thus test jobs "qemu-smoke-x86-64-gcc" and "qemu-smoke-x86-64-clang" fails because they are using XTF's "test-pv32pae-example" which is an hello word 32bit PV guest. As we are looking for whether Xen boot or not with a quick smoke test, just use 64bit tests instead. Signed-off-by: Anthony PERARD Reviewed-by: Andrew Cooper --- diff --git a/automation/scripts/qemu-smoke-x86-64.sh b/automation/scripts/qemu-smoke-x86-64.sh index 09152e3e9c..29cb44b757 100755 --- a/automation/scripts/qemu-smoke-x86-64.sh +++ b/automation/scripts/qemu-smoke-x86-64.sh @@ -15,8 +15,8 @@ git clone https://xenbits.xen.org/git-http/xtf.git cd xtf && make -j$(nproc) && cd - case $variant in - pvh) k=test-hvm32pae-example extra="dom0-iommu=none dom0=pvh" ;; - *) k=test-pv32pae-example extra= ;; + pvh) k=test-hvm64-example extra="dom0-iommu=none dom0=pvh" ;; + *) k=test-pv64-example extra= ;; esac rm -f smoke.serial