test/py: Fix race conditions on EFI capsule tests

efi_capsule_data() is called in each of the EFI tests to create and
setup the files we need. However, it also recreates the spi.bin file
that holds the SPI flash contents we rely on for the test validation.

This leads to weird errors since reading from the flash returns 0,
instead of the expected value if the file has been recreated.

Always restart our sandbox instance if the files are recreated.

Signed-off-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
This commit is contained in:
Ilias Apalodimas 2025-08-07 11:08:16 +03:00 committed by Tom Rini
parent 5096f81bda
commit fa2a2e20d0

View File

@ -103,6 +103,7 @@ def efi_capsule_data(request, ubman):
pytest.skip('Setup failed: %s' % exception.cmd) pytest.skip('Setup failed: %s' % exception.cmd)
return return
else: else:
ubman.restart_uboot()
yield image_path yield image_path
finally: finally:
call('rm -rf %s' % mnt_point, shell=True) call('rm -rf %s' % mnt_point, shell=True)