Message ID | 162332430515.194926.3763973184522036843.stgit@pasha-ThinkPad-X280 |
---|---|
State | New |
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 nios2 platform. The test uses kernel binaries > taken from boot_linux_console test. > > Signed-off-by: Pavel Dovgalyuk <Pavel.Dovgalyuk@ispras.ru> > --- > tests/acceptance/replay_kernel.py | 11 +++++++++++ > 1 file changed, 11 insertions(+) > Reviewed-by: Willian Rampazzo <willianr@redhat.com>
diff --git a/tests/acceptance/replay_kernel.py b/tests/acceptance/replay_kernel.py index c1e80ab5ad..8ada87f8c9 100644 --- a/tests/acceptance/replay_kernel.py +++ b/tests/acceptance/replay_kernel.py @@ -330,6 +330,17 @@ def test_or1k_sim(self): file_path = self.fetch_asset(tar_url, asset_hash=tar_hash) self.do_test_advcal_2018(file_path, 'vmlinux') + def test_nios2_10m50(self): + """ + :avocado: tags=arch:nios2 + :avocado: tags=machine:10m50-ghrd + """ + tar_hash = 'e4251141726c412ac0407c5a6bceefbbff018918' + tar_url = ('https://www.qemu-advent-calendar.org' + '/2018/download/day14.tar.xz') + file_path = self.fetch_asset(tar_url, asset_hash=tar_hash) + self.do_test_advcal_2018(file_path, 'vmlinux.elf') + def test_ppc_g3beige(self): """ :avocado: tags=arch:ppc
This patch adds record/replay test which boots Linux kernel on nios2 platform. The test uses kernel binaries taken from boot_linux_console test. Signed-off-by: Pavel Dovgalyuk <Pavel.Dovgalyuk@ispras.ru> --- tests/acceptance/replay_kernel.py | 11 +++++++++++ 1 file changed, 11 insertions(+)