diff options
| author | Thomas Huth <thuth@redhat.com> | 2024-10-23 16:19:19 +0200 |
|---|---|---|
| committer | Thomas Huth <thuth@redhat.com> | 2024-11-04 14:16:11 +0100 |
| commit | e6a401d7a696d9e89c82e51f9b923addcbf879b6 (patch) | |
| tree | 1afe870cbfded8a9213065a9ae7a022a798387bd /tests/functional/test_ppc64_tuxrun.py | |
| parent | a3c946ec8880299c59ef1b30de29377c3c024191 (diff) | |
| download | focaccia-qemu-e6a401d7a696d9e89c82e51f9b923addcbf879b6.tar.gz focaccia-qemu-e6a401d7a696d9e89c82e51f9b923addcbf879b6.zip | |
tests/functional: Fix the s390x and ppc64 tuxrun tests
I forgot to add the tests to the meson.build file and looks like I even managed to somehow mix up the hashsums in the ppc64 test! Message-ID: <20241023141919.930689-1-thuth@redhat.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to '')
| -rwxr-xr-x | tests/functional/test_ppc64_tuxrun.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/functional/test_ppc64_tuxrun.py b/tests/functional/test_ppc64_tuxrun.py index 552b53c97a..03b47e07f2 100755 --- a/tests/functional/test_ppc64_tuxrun.py +++ b/tests/functional/test_ppc64_tuxrun.py @@ -83,10 +83,10 @@ class TuxRunPPC64Test(TuxRunBaselineTest): ASSET_PPC64_KERNEL = Asset( 'https://storage.tuxboot.com/20230331/ppc64/vmlinux', - '1d953e81a4379e537fc8e41e05a0a59d9b453eef97aa03d47866c6c45b00bdff') + 'f22a9b9e924174a4c199f4c7e5d91a2339fcfe51c6eafd0907dc3e09b64ab728') ASSET_PPC64_ROOTFS = Asset( 'https://storage.tuxboot.com/20230331/ppc64/rootfs.ext4.zst', - 'f22a9b9e924174a4c199f4c7e5d91a2339fcfe51c6eafd0907dc3e09b64ab728') + '1d953e81a4379e537fc8e41e05a0a59d9b453eef97aa03d47866c6c45b00bdff') def test_ppc64(self): self.ppc64_common_tuxrun(kernel_asset=self.ASSET_PPC64_KERNEL, |