mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 15:53:54 -06:00
tests/functional: switch to new test skip decorators
This ensures consistency of behaviour across all the tests, and requires that we provide gitlab bug links when marking a test to be skipped due to unreliability. Reviewed-by: Thomas Huth <thuth@redhat.com> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com> Message-ID: <20241217155953.3950506-9-berrange@redhat.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
This commit is contained in:
parent
3ea06d65be
commit
3d5938607e
16 changed files with 61 additions and 122 deletions
|
@ -8,8 +8,9 @@ import os
|
|||
|
||||
from qemu_test import LinuxKernelTest, Asset, exec_command_and_wait_for_pattern
|
||||
from qemu_test import interrupt_interactive_console_until_pattern
|
||||
from qemu_test import skipBigDataTest
|
||||
from qemu_test.utils import gzip_uncompress, image_pow2ceil_expand
|
||||
from unittest import skipUnless
|
||||
|
||||
|
||||
class CubieboardMachine(LinuxKernelTest):
|
||||
|
||||
|
@ -105,7 +106,7 @@ class CubieboardMachine(LinuxKernelTest):
|
|||
# Wait for VM to shut down gracefully
|
||||
self.vm.wait()
|
||||
|
||||
@skipUnless(os.getenv('AVOCADO_ALLOW_LARGE_STORAGE'), 'storage limited')
|
||||
@skipBigDataTest()
|
||||
def test_arm_cubieboard_openwrt_22_03_2(self):
|
||||
# This test download a 7.5 MiB compressed image and expand it
|
||||
# to 126 MiB.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue