mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 21:09:03 +02:00

The test is actually using grub-efi not systemd-boot so remove it completely. systemd-boot will be tested via uki.py tests. (From OE-Core rev: 542ea853bb194629d23e1db9c05e25181bfce145) Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
35 lines
1.1 KiB
Python
35 lines
1.1 KiB
Python
# Based on runqemu.py test file
|
|
#
|
|
# Copyright (c) 2017 Wind River Systems, Inc.
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
from oeqa.selftest.case import OESelftestTestCase
|
|
from oeqa.utils.commands import bitbake, runqemu, get_bb_var
|
|
from oeqa.core.decorator.data import skipIfNotMachine
|
|
import oe.types
|
|
|
|
class GenericEFITest(OESelftestTestCase):
|
|
"""EFI booting test class"""
|
|
@skipIfNotMachine("qemux86-64", "test is qemux86-64 specific currently")
|
|
def test_boot_efi(self):
|
|
image = "core-image-minimal"
|
|
runqemu_params = get_bb_var('TEST_RUNQEMUPARAMS', image) or ""
|
|
cmd = "runqemu %s nographic serial wic ovmf" % (runqemu_params)
|
|
if oe.types.qemu_use_kvm(self.td.get('QEMU_USE_KVM', 0), self.td["TARGET_ARCH"]):
|
|
cmd += " kvm"
|
|
|
|
self.write_config("""
|
|
EFI_PROVIDER = "grub-efi"
|
|
IMAGE_FSTYPES:pn-%s:append = " wic"
|
|
MACHINE_FEATURES:append = " efi"
|
|
WKS_FILE = "efi-bootdisk.wks.in"
|
|
IMAGE_INSTALL:append = " grub-efi kernel-image-bzimage"
|
|
"""
|
|
% (image))
|
|
|
|
bitbake(image + " ovmf")
|
|
with runqemu(image, ssh=False, launch_cmd=cmd) as qemu:
|
|
self.assertTrue(qemu.runner.logged, "Failed: %s" % cmd)
|