diff options
author | Alex Bennée | 2020-07-01 15:56:40 +0200 |
---|---|---|
committer | Alex Bennée | 2020-07-11 16:53:00 +0200 |
commit | 61bbce96fe4c8e3a2b7df5a67ba7dc6ba418e54b (patch) | |
tree | c25ab50de406313c4a5edf4215727057f7634c7f /tests/acceptance | |
parent | tests/acceptance: fix dtb path for machine_rx_gdbsim (diff) | |
download | qemu-61bbce96fe4c8e3a2b7df5a67ba7dc6ba418e54b.tar.gz qemu-61bbce96fe4c8e3a2b7df5a67ba7dc6ba418e54b.tar.xz qemu-61bbce96fe4c8e3a2b7df5a67ba7dc6ba418e54b.zip |
tests/acceptance: skip multicore mips_malta tests on GitLab
For some reason these tests fail all the time on GitLab. I can
re-create the hang around 3% of the time locally but it doesn't seem
to be MTTCG related. For now skipIf on GITLAB_CI.
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Cc: Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
Message-Id: <20200701135652.1366-29-alex.bennee@linaro.org>
Diffstat (limited to 'tests/acceptance')
-rw-r--r-- | tests/acceptance/machine_mips_malta.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/acceptance/machine_mips_malta.py b/tests/acceptance/machine_mips_malta.py index 92b4f28a11..7c9a4ee4d2 100644 --- a/tests/acceptance/machine_mips_malta.py +++ b/tests/acceptance/machine_mips_malta.py @@ -15,6 +15,7 @@ from avocado import skipUnless from avocado_qemu import Test from avocado_qemu import wait_for_console_pattern from avocado.utils import archive +from avocado import skipIf NUMPY_AVAILABLE = True @@ -99,6 +100,7 @@ class MaltaMachineFramebuffer(Test): """ self.do_test_i6400_framebuffer_logo(1) + @skipIf(os.getenv('GITLAB_CI'), 'Running on GitLab') def test_mips_malta_i6400_framebuffer_logo_7cores(self): """ :avocado: tags=arch:mips64el @@ -108,6 +110,7 @@ class MaltaMachineFramebuffer(Test): """ self.do_test_i6400_framebuffer_logo(7) + @skipIf(os.getenv('GITLAB_CI'), 'Running on GitLab') def test_mips_malta_i6400_framebuffer_logo_8cores(self): """ :avocado: tags=arch:mips64el |