Message ID | 20231205204106.95531-12-alex.bennee@linaro.org |
---|---|
State | New |
Headers | show |
Series | record/replay fixes, maybe for 8.2 or for post release stable? | expand |
On 05.12.2023 23:41, Alex Bennée wrote: > With the latest fixes for #2010 and #2013 these tests look pretty > stable now. Of course the only way to be really sure is to run it in > the CI infrastructure and see what breaks. > > Signed-off-by: Alex Bennée <alex.bennee@linaro.org> > --- > tests/avocado/replay_kernel.py | 9 --------- > 1 file changed, 9 deletions(-) > > diff --git a/tests/avocado/replay_kernel.py b/tests/avocado/replay_kernel.py > index 1eaa36444c..c54e96c9ff 100644 > --- a/tests/avocado/replay_kernel.py > +++ b/tests/avocado/replay_kernel.py > @@ -98,8 +98,6 @@ def test_i386_pc(self): > > self.run_rr(kernel_path, kernel_command_line, console_pattern, shift=5) > > - # See https://gitlab.com/qemu-project/qemu/-/issues/2010 > - @skipUnless(os.getenv('QEMU_TEST_FLAKY_TESTS'), 'Test sometimes gets stuck') > def test_x86_64_pc(self): > """ > :avocado: tags=arch:x86_64 > @@ -135,8 +133,6 @@ def test_mips_malta(self): > > self.run_rr(kernel_path, kernel_command_line, console_pattern, shift=5) > > - # See https://gitlab.com/qemu-project/qemu/-/issues/2013 > - @skipUnless(os.getenv('QEMU_TEST_FLAKY_TESTS'), 'Test is unstable on GitLab') > def test_mips64el_malta(self): > """ > This test requires the ar tool to extract "data.tar.gz" from > @@ -152,7 +148,6 @@ def test_mips64el_malta(self): > > :avocado: tags=arch:mips64el > :avocado: tags=machine:malta > - :avocado: tags=flaky > """ > deb_url = ('http://snapshot.debian.org/archive/debian/' > '20130217T032700Z/pool/main/l/linux-2.6/' > @@ -200,8 +195,6 @@ def test_arm_virt(self): > > self.run_rr(kernel_path, kernel_command_line, console_pattern, shift=1) > > - @skipUnless(os.getenv('QEMU_TEST_FLAKY_TESTS'), 'Test is unstable on GitLab') > - > def test_arm_cubieboard_initrd(self): > """ > :avocado: tags=arch:arm > @@ -354,7 +347,6 @@ def test_m68k_mcf5208evb(self): > file_path = self.fetch_asset(tar_url, asset_hash=tar_hash) > self.do_test_advcal_2018(file_path, 'sanity-clause.elf') > > - @skip("Test currently broken") # Console stuck as of 5.2-rc1 > def test_microblaze_s3adsp1800(self): > """ > :avocado: tags=arch:microblaze > @@ -389,7 +381,6 @@ def test_or1k_sim(self): > file_path = self.fetch_asset(tar_url, asset_hash=tar_hash) > self.do_test_advcal_2018(file_path, 'vmlinux') > > - @skip("nios2 emulation is buggy under record/replay") > def test_nios2_10m50(self): > """ > :avocado: tags=arch:nios2 Acked-by: Pavel Dovgalyuk <Pavel.Dovgalyuk@ispras.ru>
diff --git a/tests/avocado/replay_kernel.py b/tests/avocado/replay_kernel.py index 1eaa36444c..c54e96c9ff 100644 --- a/tests/avocado/replay_kernel.py +++ b/tests/avocado/replay_kernel.py @@ -98,8 +98,6 @@ def test_i386_pc(self): self.run_rr(kernel_path, kernel_command_line, console_pattern, shift=5) - # See https://gitlab.com/qemu-project/qemu/-/issues/2010 - @skipUnless(os.getenv('QEMU_TEST_FLAKY_TESTS'), 'Test sometimes gets stuck') def test_x86_64_pc(self): """ :avocado: tags=arch:x86_64 @@ -135,8 +133,6 @@ def test_mips_malta(self): self.run_rr(kernel_path, kernel_command_line, console_pattern, shift=5) - # See https://gitlab.com/qemu-project/qemu/-/issues/2013 - @skipUnless(os.getenv('QEMU_TEST_FLAKY_TESTS'), 'Test is unstable on GitLab') def test_mips64el_malta(self): """ This test requires the ar tool to extract "data.tar.gz" from @@ -152,7 +148,6 @@ def test_mips64el_malta(self): :avocado: tags=arch:mips64el :avocado: tags=machine:malta - :avocado: tags=flaky """ deb_url = ('http://snapshot.debian.org/archive/debian/' '20130217T032700Z/pool/main/l/linux-2.6/' @@ -200,8 +195,6 @@ def test_arm_virt(self): self.run_rr(kernel_path, kernel_command_line, console_pattern, shift=1) - @skipUnless(os.getenv('QEMU_TEST_FLAKY_TESTS'), 'Test is unstable on GitLab') - def test_arm_cubieboard_initrd(self): """ :avocado: tags=arch:arm @@ -354,7 +347,6 @@ def test_m68k_mcf5208evb(self): file_path = self.fetch_asset(tar_url, asset_hash=tar_hash) self.do_test_advcal_2018(file_path, 'sanity-clause.elf') - @skip("Test currently broken") # Console stuck as of 5.2-rc1 def test_microblaze_s3adsp1800(self): """ :avocado: tags=arch:microblaze @@ -389,7 +381,6 @@ def test_or1k_sim(self): file_path = self.fetch_asset(tar_url, asset_hash=tar_hash) self.do_test_advcal_2018(file_path, 'vmlinux') - @skip("nios2 emulation is buggy under record/replay") def test_nios2_10m50(self): """ :avocado: tags=arch:nios2
With the latest fixes for #2010 and #2013 these tests look pretty stable now. Of course the only way to be really sure is to run it in the CI infrastructure and see what breaks. Signed-off-by: Alex Bennée <alex.bennee@linaro.org> --- tests/avocado/replay_kernel.py | 9 --------- 1 file changed, 9 deletions(-)