Merge pull request #2100 from justincormack/no-efi-test

Disable Qemu EFI ISO test for now
This commit is contained in:
Justin Cormack 2017-06-23 11:50:35 -07:00 committed by GitHub
commit 8be67983ff

View File

@ -1,5 +1,5 @@
#!/bin/sh
# SUMMARY: Check that legacy BIOS ISO boots in qemu
# SUMMARY: Check that EFI BIOS ISO boots in qemu
# LABELS:
set -e
@ -17,6 +17,10 @@ clean_up() {
trap clean_up EXIT
# see https://github.com/linuxkit/linuxkit/issues/1872 this is very flaky in qemu
# disabling for now until we fix a config that works
exit $RT_CANCEL
if command -v qemu-system-x86_64; then
if [ ! -f /usr/share/ovmf/bios.bin ]; then
exit $RT_CANCEL