mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 01:03:55 -06:00
tests/functional: convert tests to new archive_extract helper
Replace use of utils.archive_extract and extract_from_deb with the new archive_extract helper. Reviewed-by: Thomas Huth <thuth@redhat.com> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com> Message-ID: <20241217155953.3950506-24-berrange@redhat.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
This commit is contained in:
parent
239fd29d6f
commit
5831ed84e7
37 changed files with 134 additions and 205 deletions
|
@ -7,8 +7,6 @@
|
|||
#
|
||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
from zipfile import ZipFile
|
||||
|
||||
from qemu_test import LinuxKernelTest, Asset
|
||||
|
||||
|
||||
|
@ -21,11 +19,7 @@ class Aarch64Raspi3Machine(LinuxKernelTest):
|
|||
|
||||
def test_aarch64_raspi3_atf(self):
|
||||
efi_name = 'RPI_EFI.fd'
|
||||
zip_path = self.ASSET_RPI3_UEFI.fetch()
|
||||
|
||||
with ZipFile(zip_path, 'r') as zf:
|
||||
zf.extract(efi_name, path=self.workdir)
|
||||
efi_fd = self.scratch_file(efi_name)
|
||||
efi_fd = self.archive_extract(self.ASSET_RPI3_UEFI, member=efi_name)
|
||||
|
||||
self.set_machine('raspi3b')
|
||||
self.vm.set_console(console_index=1)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue