Message ID | 162332429407.194926.5057230329979093589.stgit@pasha-ThinkPad-X280 (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | More record/replay acceptance tests | expand |
On Thu, Jun 10, 2021 at 8:25 AM Pavel Dovgalyuk <pavel.dovgalyuk@ispras.ru> wrote: > > This patch adds record/replay test which boots Linux > kernel on ppc64 platform. The test uses kernel binaries > taken from boot_linux_console test. > > Signed-off-by: Pavel Dovgalyuk <Pavel.Dovgalyuk@ispras.ru> > --- > tests/acceptance/boot_linux_console.py | 12 ++++++++++++ > 1 file changed, 12 insertions(+) > This is already upstream, right? b52d7e216c6 or am I missing something?
On 22.06.2021 22:23, Willian Rampazzo wrote: > On Thu, Jun 10, 2021 at 8:25 AM Pavel Dovgalyuk > <pavel.dovgalyuk@ispras.ru> wrote: >> >> This patch adds record/replay test which boots Linux >> kernel on ppc64 platform. The test uses kernel binaries >> taken from boot_linux_console test. >> >> Signed-off-by: Pavel Dovgalyuk <Pavel.Dovgalyuk@ispras.ru> >> --- >> tests/acceptance/boot_linux_console.py | 12 ++++++++++++ >> 1 file changed, 12 insertions(+) >> > > This is already upstream, right? b52d7e216c6 or am I missing something? > My fault. I accidentally added this test to the wrong script.
diff --git a/tests/acceptance/boot_linux_console.py b/tests/acceptance/boot_linux_console.py index cded547d1d..da1c0ce178 100644 --- a/tests/acceptance/boot_linux_console.py +++ b/tests/acceptance/boot_linux_console.py @@ -1104,6 +1104,18 @@ def test_m68k_mcf5208evb(self): tar_hash = 'ac688fd00561a2b6ce1359f9ff6aa2b98c9a570c' self.do_test_advcal_2018('07', tar_hash, 'sanity-clause.elf') + def test_ppc64_e500(self): + """ + :avocado: tags=arch:ppc64 + :avocado: tags=machine:ppce500 + :avocado: tags=cpu:e5500 + """ + tar_hash = '6951d86d644b302898da2fd701739c9406527fe1' + tar_url = ('https://www.qemu-advent-calendar.org' + '/2018/download/day19.tar.xz') + file_path = self.fetch_asset(tar_url, asset_hash=tar_hash) + self.do_test_advcal_2018(file_path, 'uImage', ('-cpu', 'e5500')) + def test_or1k_sim(self): """ :avocado: tags=arch:or1k
This patch adds record/replay test which boots Linux kernel on ppc64 platform. The test uses kernel binaries taken from boot_linux_console test. Signed-off-by: Pavel Dovgalyuk <Pavel.Dovgalyuk@ispras.ru> --- tests/acceptance/boot_linux_console.py | 12 ++++++++++++ 1 file changed, 12 insertions(+)