mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -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
|
@ -5,7 +5,7 @@
|
|||
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
from qemu_test import LinuxKernelTest, Asset
|
||||
from qemu_test.utils import archive_extract
|
||||
|
||||
|
||||
class MacTest(LinuxKernelTest):
|
||||
|
||||
|
@ -19,9 +19,7 @@ class MacTest(LinuxKernelTest):
|
|||
# we're running kvm_hv or kvm_pr. For now let's disable this test
|
||||
# if we don't have TCG support.
|
||||
self.require_accelerator("tcg")
|
||||
|
||||
file_path = self.ASSET_DAY15.fetch()
|
||||
archive_extract(file_path, self.workdir)
|
||||
self.archive_extract(self.ASSET_DAY15)
|
||||
self.vm.add_args('-M', 'graphics=off')
|
||||
self.launch_kernel(self.scratch_file('day15', 'invaders.elf'),
|
||||
wait_for='QEMU advent calendar')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue