We've got this nice vmstate-static-checker.py script that can help to detect screw-ups in the migration states. Unfortunately, it's currently only run manually, which can be cumbersome. Let's run it from a functional test automatically with the reference data from QEMU 7.2, so that we get at least a basic coverage here. Since the test can fail when the checker script detects a false positive, mark the test with a skipFlakyTest decorator for now, so that it is only run when the user also set the QEMU_TEST_FLAKY_TESTS environment variable. Acked-by: Fabiano Rosas <farosas@suse.de> Signed-off-by: Thomas Huth <thuth@redhat.com> Message-ID: <20250912100755.316518-5-thuth@redhat.com>
49 lines
845 B
Meson
49 lines
845 B
Meson
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
test_aarch64_timeouts = {
|
|
'aspeed_ast2700' : 600,
|
|
'aspeed_ast2700fc' : 600,
|
|
'device_passthrough' : 720,
|
|
'imx8mp_evk' : 240,
|
|
'raspi4' : 480,
|
|
'reverse_debug' : 180,
|
|
'rme_virt' : 1200,
|
|
'rme_sbsaref' : 1200,
|
|
'sbsaref_alpine' : 1200,
|
|
'sbsaref_freebsd' : 720,
|
|
'smmu' : 720,
|
|
'tuxrun' : 240,
|
|
'virt' : 360,
|
|
'virt_gpu' : 480,
|
|
}
|
|
|
|
tests_aarch64_system_quick = [
|
|
'migration',
|
|
'vmstate',
|
|
]
|
|
|
|
tests_aarch64_system_thorough = [
|
|
'aspeed_ast2700',
|
|
'aspeed_ast2700fc',
|
|
'device_passthrough',
|
|
'hotplug_pci',
|
|
'imx8mp_evk',
|
|
'kvm',
|
|
'multiprocess',
|
|
'raspi3',
|
|
'raspi4',
|
|
'replay',
|
|
'reverse_debug',
|
|
'rme_virt',
|
|
'rme_sbsaref',
|
|
'sbsaref',
|
|
'sbsaref_alpine',
|
|
'sbsaref_freebsd',
|
|
'smmu',
|
|
'tcg_plugins',
|
|
'tuxrun',
|
|
'virt',
|
|
'virt_gpu',
|
|
'xen',
|
|
'xlnx_versal',
|
|
]
|