diff options
| author | Daniel P. Berrangé <berrange@redhat.com> | 2024-11-21 16:57:28 +0000 |
|---|---|---|
| committer | Alex Bennée <alex.bennee@linaro.org> | 2024-11-25 10:06:20 +0000 |
| commit | 2abdc8cad0b97f5a98a0e4329a07a658c630ce54 (patch) | |
| tree | 5d21fec16f6d2ac0bce86c336e500330595ef5a0 /tests | |
| parent | 6b99bb046dd36a6dd5525b8f88c2dcddae49222a (diff) | |
| download | focaccia-qemu-2abdc8cad0b97f5a98a0e4329a07a658c630ce54.tar.gz focaccia-qemu-2abdc8cad0b97f5a98a0e4329a07a658c630ce54.zip | |
tests/functional: fix mips64el test to honour workdir
The missing directory separator resulted in the kernel file being created 1 level higher than expected. Reviewed-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com> Message-Id: <20241121154218.1423005-2-berrange@redhat.com> Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Message-Id: <20241121165806.476008-2-alex.bennee@linaro.org>
Diffstat (limited to 'tests')
| -rwxr-xr-x | tests/functional/test_mips64el_malta.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functional/test_mips64el_malta.py b/tests/functional/test_mips64el_malta.py index 6c6355b131..24ebcdb9c1 100755 --- a/tests/functional/test_mips64el_malta.py +++ b/tests/functional/test_mips64el_malta.py @@ -129,7 +129,7 @@ class MaltaMachineFramebuffer(LinuxKernelTest): screendump_path = os.path.join(self.workdir, 'screendump.pbm') kernel_path_gz = self.ASSET_KERNEL_4_7_0.fetch() - kernel_path = self.workdir + "vmlinux" + kernel_path = self.workdir + "/vmlinux" gzip_uncompress(kernel_path_gz, kernel_path) tuxlogo_path = self.ASSET_TUXLOGO.fetch() |