From: Michael Halstead Date: Thu, 8 Nov 2018 20:58:40 +0000 (-0800) Subject: scripts/autobuilder-worker-prereq-tests: Shore up qemu testing X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~16217 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5fb26ff0b56eebb864fd8f74c015e414476eec43;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git scripts/autobuilder-worker-prereq-tests: Shore up qemu testing Check that yocto-autobuilder-helper has been cloned to the correct location. Check that vnc is running using the same script the autobuilder does. Set the DISPLAY enviroment variable to :1 the same way we do when building normally. Make the VM's serial console available so we can log in and power off allowing the tests to continue. Signed-off-by: Michael Halstead Signed-off-by: Richard Purdie --- diff --git a/scripts/autobuilder-worker-prereq-tests b/scripts/autobuilder-worker-prereq-tests index bb46c691353..358dd2beeec 100755 --- a/scripts/autobuilder-worker-prereq-tests +++ b/scripts/autobuilder-worker-prereq-tests @@ -15,6 +15,12 @@ # test buildistory git repo works? # +if [ ! -x $HOME/yocto-autobuilder-helper/scripts/checkvnc ]; then + echo "$HOME/yocto-autobuilder-helper should be created." + exit 1 +fi +$HOME/yocto-autobuilder-helper/scripts/checkvnc + . ./oe-init-build-env > /dev/null if [ "$?" != "0" ]; then exit 1 @@ -53,12 +59,12 @@ if [ ! -e bzImage-qemux86-64.bin ]; then fi popd bitbake qemu-helper-native -runqemu qemux86-64 +DISPLAY=:1 runqemu serialstdio qemux86-64 if [ "$?" != "0" ]; then echo "Unable to use runqemu" exit 1 fi -runqemu qemux86-64 kvm +DISPLAY=:1 runqemu serialstdio qemux86-64 kvm if [ "$?" != "0" ]; then echo "Unable to use runqemu with kvm" exit 1