diff options
author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2023-12-01 21:56:30 +0100 |
---|---|---|
committer | Stefan Hajnoczi <stefanha@redhat.com> | 2023-12-04 08:17:35 -0500 |
commit | 1664d74c50739401c8b40e8b514d12b5fc250067 (patch) | |
tree | 69625b813ee0d99dc5d7594cfa719729f5185e5e /tests | |
parent | 8e51bae8abe3d3433bc7c2ce42e3328923523ba8 (diff) |
tests/avocado: Update yamon-bin-02.22.zip URL
http://www.imgtec.com/tools/mips-tools/downloads/ redirects
to https://mips.com/downloads/yamon-version-02-22/ then points
to an invalid path to a s3 bucket. Use the correct path. The
site will eventually be fixed.
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Message-ID: <20231201205630.10837-1-philmd@linaro.org>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/avocado/machine_mips_malta.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/avocado/machine_mips_malta.py b/tests/avocado/machine_mips_malta.py index 99bee49e9a..8cf84bd805 100644 --- a/tests/avocado/machine_mips_malta.py +++ b/tests/avocado/machine_mips_malta.py @@ -128,8 +128,9 @@ class MaltaMachineFramebuffer(QemuSystemTest): class MaltaMachine(QemuSystemTest): def do_test_yamon(self): - rom_url = ('http://www.imgtec.com/tools/mips-tools/downloads/' - 'yamon/yamon-bin-02.22.zip') + rom_url = ('https://s3-eu-west-1.amazonaws.com/' + 'downloads-mips/mips-downloads/' + 'YAMON/yamon-bin-02.22.zip') rom_hash = '8da7ecddbc5312704b8b324341ee238189bde480' zip_path = self.fetch_asset(rom_url, asset_hash=rom_hash) |