diff --git a/tests/functional/mips/test_malta.py b/tests/functional/mips/test_malta.py index 30279f0ff2..7a734bc069 100755 --- a/tests/functional/mips/test_malta.py +++ b/tests/functional/mips/test_malta.py @@ -9,6 +9,7 @@ import os from qemu_test import LinuxKernelTest, Asset, wait_for_console_pattern +from qemu_test import skipFlakyTest from qemu_test import exec_command_and_wait_for_pattern @@ -181,6 +182,7 @@ class MaltaMachineConsole(LinuxKernelTest): 'debian_wheezy_mips_standard.qcow2'), 'de03599285b8382ad309309a6c4869f6c6c42a5cfc983342bab9ec0dfa7849a2') + @skipFlakyTest("https://gitlab.com/qemu-project/qemu/-/issues/3109") def test_wheezy(self): kernel_path = self.ASSET_WHEEZY_KERNEL.fetch() image_path = self.ASSET_WHEEZY_DISK.fetch() diff --git a/tests/functional/mips64/test_malta.py b/tests/functional/mips64/test_malta.py index a553d3c5bc..91c57c56af 100755 --- a/tests/functional/mips64/test_malta.py +++ b/tests/functional/mips64/test_malta.py @@ -5,6 +5,7 @@ # SPDX-License-Identifier: GPL-2.0-or-later from qemu_test import LinuxKernelTest, Asset +from qemu_test import skipFlakyTest from mips.test_malta import mips_check_wheezy @@ -20,6 +21,7 @@ class MaltaMachineConsole(LinuxKernelTest): 'debian_wheezy_mips_standard.qcow2'), 'de03599285b8382ad309309a6c4869f6c6c42a5cfc983342bab9ec0dfa7849a2') + @skipFlakyTest("https://gitlab.com/qemu-project/qemu/-/issues/3109") def test_wheezy(self): kernel_path = self.ASSET_WHEEZY_KERNEL.fetch() image_path = self.ASSET_WHEEZY_DISK.fetch() diff --git a/tests/functional/mips64el/test_malta.py b/tests/functional/mips64el/test_malta.py index 170147bfcc..e37463dc29 100755 --- a/tests/functional/mips64el/test_malta.py +++ b/tests/functional/mips64el/test_malta.py @@ -102,6 +102,7 @@ class MaltaMachineConsole(LinuxKernelTest): 'debian_wheezy_mipsel_standard.qcow2'), '454f09ae39f7e6461c84727b927100d2c7813841f2a0a5dce328114887ecf914') + @skipFlakyTest("https://gitlab.com/qemu-project/qemu/-/issues/3109") def test_wheezy(self): kernel_path = self.ASSET_WHEEZY_KERNEL.fetch() image_path = self.ASSET_WHEEZY_DISK.fetch() diff --git a/tests/functional/mipsel/test_malta.py b/tests/functional/mipsel/test_malta.py index 427e163d19..59ab4a6058 100755 --- a/tests/functional/mipsel/test_malta.py +++ b/tests/functional/mipsel/test_malta.py @@ -10,6 +10,7 @@ # SPDX-License-Identifier: GPL-2.0-or-later from qemu_test import QemuSystemTest, LinuxKernelTest, Asset +from qemu_test import skipFlakyTest from qemu_test import interrupt_interactive_console_until_pattern from qemu_test import wait_for_console_pattern @@ -69,6 +70,7 @@ class MaltaMachineConsole(LinuxKernelTest): 'debian_wheezy_mipsel_standard.qcow2'), '454f09ae39f7e6461c84727b927100d2c7813841f2a0a5dce328114887ecf914') + @skipFlakyTest("https://gitlab.com/qemu-project/qemu/-/issues/3109") def test_wheezy(self): kernel_path = self.ASSET_WHEEZY_KERNEL.fetch() image_path = self.ASSET_WHEEZY_DISK.fetch()