diff options
| author | Daniel P. Berrangé <berrange@redhat.com> | 2024-12-17 15:59:47 +0000 |
|---|---|---|
| committer | Thomas Huth <thuth@redhat.com> | 2024-12-17 19:39:53 +0100 |
| commit | 65d35a4e27a808370bac40c06c1e24d30461b0eb (patch) | |
| tree | 9a08a97a577d1cf61bd487434ddd7503d0b026c3 /tests/functional/test_aarch64_raspi4.py | |
| parent | fd4abcb00839a310fc668d86177278e789f51688 (diff) | |
| download | focaccia-qemu-65d35a4e27a808370bac40c06c1e24d30461b0eb.tar.gz focaccia-qemu-65d35a4e27a808370bac40c06c1e24d30461b0eb.zip | |
tests/functional: convert tests to new uncompress helper
Replace use of lzma_uncompress and gzip_uncompress with the new uncompress helper. Reviewed-by: Thomas Huth <thuth@redhat.com> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com> Message-ID: <20241217155953.3950506-27-berrange@redhat.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'tests/functional/test_aarch64_raspi4.py')
| -rwxr-xr-x | tests/functional/test_aarch64_raspi4.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/tests/functional/test_aarch64_raspi4.py b/tests/functional/test_aarch64_raspi4.py index 3918e35e82..7a4302b0c5 100755 --- a/tests/functional/test_aarch64_raspi4.py +++ b/tests/functional/test_aarch64_raspi4.py @@ -7,7 +7,6 @@ from qemu_test import LinuxKernelTest, Asset from qemu_test import exec_command_and_wait_for_pattern -from qemu_test.utils import gzip_uncompress class Aarch64Raspi4Machine(LinuxKernelTest): @@ -63,9 +62,7 @@ class Aarch64Raspi4Machine(LinuxKernelTest): member='boot/kernel8.img') dtb_path = self.archive_extract(self.ASSET_KERNEL_20190215, member='boot/bcm2711-rpi-4-b.dtb') - initrd_path_gz = self.ASSET_INITRD.fetch() - initrd_path = self.scratch_file('rootfs.cpio') - gzip_uncompress(initrd_path_gz, initrd_path) + initrd_path = self.uncompress(self.ASSET_INITRD) self.set_machine('raspi4b') self.vm.set_console() |