On 3/3/21 2:22 AM, Joel Stanley wrote: > Test MTD images from the OpenBMC project on AST2400 and AST2500 SoCs > from ASPEED, by booting Palmetto and Romulus BMC machines. > > The images are fetched from OpenBMC's release directory on github.
You need to justify here why this is safe to run that on anyone workstation, or use AVOCADO_ALLOW_UNTRUSTED_CODE. > > Co-developed-by: Cédric Le Goater <c...@kaod.org> > Signed-off-by: Joel Stanley <j...@jms.id.au> > --- > tests/acceptance/boot_linux_console.py | 46 ++++++++++++++++++++++++++ > 1 file changed, 46 insertions(+) > > diff --git a/tests/acceptance/boot_linux_console.py > b/tests/acceptance/boot_linux_console.py > index eb012867997f..2f46a08fdc10 100644 > --- a/tests/acceptance/boot_linux_console.py > +++ b/tests/acceptance/boot_linux_console.py > @@ -1048,6 +1048,52 @@ def test_arm_vexpressa9(self): > self.vm.add_args('-dtb', self.workdir + > '/day16/vexpress-v2p-ca9.dtb') > self.do_test_advcal_2018('16', tar_hash, 'winter.zImage') > > + def test_arm_ast2400_palmetto_openbmc_v2_9_0(self): > + """ > + :avocado: tags=arch:arm > + :avocado: tags=machine:palmetto-bmc > + """ > + > + image_url = > ('https://github.com/openbmc/openbmc/releases/download/2.9.0/' > + 'obmc-phosphor-image-palmetto.static.mtd') > + image_hash = > ('3e13bbbc28e424865dc42f35ad672b10f2e82cdb11846bb28fa625b48beafd0d') > + image_path = self.fetch_asset(image_url, asset_hash=image_hash, > + algorithm='sha256') > + > + self.do_test_arm_aspeed(image_path)