From: Nicholas Piggin Date: Wed, 12 Mar 2025 13:00:00 +0000 (+1000) Subject: tests/functional/asset: Fail assert fetch when retries are exceeded X-Git-Tag: v10.0.0-rc0~7^2~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a5e8299d1a119b9d757ae28a57612f633894d2f6;p=thirdparty%2Fqemu.git tests/functional/asset: Fail assert fetch when retries are exceeded Currently the fetch code does not fail gracefully when retry limit is exceeded, it just falls through the loop with no file, which ends up hitting other errors. Add a check for non-existing file, which indicates the retry limit was exceeded. Reviewed-by: Daniel P. Berrangé Signed-off-by: Nicholas Piggin Message-ID: <20250312130002.945508-2-npiggin@gmail.com> Signed-off-by: Thomas Huth --- diff --git a/tests/functional/qemu_test/asset.py b/tests/functional/qemu_test/asset.py index f0730695f0..27dd839e70 100644 --- a/tests/functional/qemu_test/asset.py +++ b/tests/functional/qemu_test/asset.py @@ -138,6 +138,9 @@ class Asset: tmp_cache_file.unlink() raise + if not os.path.exists(tmp_cache_file): + raise Exception("Retries exceeded downloading %s", self.url) + try: # Set these just for informational purposes os.setxattr(str(tmp_cache_file), "user.qemu-asset-url",