[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL v2 1/6] tests/qtest/migration: Move a couple of slow tests under g
From: |
Peter Xu |
Subject: |
[PULL v2 1/6] tests/qtest/migration: Move a couple of slow tests under g_test_slow |
Date: |
Wed, 18 Sep 2024 14:31:46 -0400 |
From: Fabiano Rosas <farosas@suse.de>
The xbzrel and vcpu_dirty_limit are the two slowest tests from
migration-test. Move them under g_test_slow() to save about 40s per
run.
Signed-off-by: Fabiano Rosas <farosas@suse.de>
Link: 20240911145204.17692-1-farosas@suse.de">https://lore.kernel.org/r/20240911145204.17692-1-farosas@suse.de
Signed-off-by: Peter Xu <peterx@redhat.com>
---
tests/qtest/migration-test.c | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/tests/qtest/migration-test.c b/tests/qtest/migration-test.c
index d6768d5d71..814ec109a6 100644
--- a/tests/qtest/migration-test.c
+++ b/tests/qtest/migration-test.c
@@ -3803,8 +3803,10 @@ int main(int argc, char **argv)
migration_test_add("/migration/precopy/unix/plain",
test_precopy_unix_plain);
- migration_test_add("/migration/precopy/unix/xbzrle",
- test_precopy_unix_xbzrle);
+ if (g_test_slow()) {
+ migration_test_add("/migration/precopy/unix/xbzrle",
+ test_precopy_unix_xbzrle);
+ }
migration_test_add("/migration/precopy/file",
test_precopy_file);
migration_test_add("/migration/precopy/file/offset",
@@ -3979,7 +3981,7 @@ int main(int argc, char **argv)
if (g_str_equal(arch, "x86_64") && has_kvm && kvm_dirty_ring_supported()) {
migration_test_add("/migration/dirty_ring",
test_precopy_unix_dirty_ring);
- if (qtest_has_machine("pc")) {
+ if (qtest_has_machine("pc") && g_test_slow()) {
migration_test_add("/migration/vcpu_dirty_limit",
test_vcpu_dirty_limit);
}
--
2.45.0
- [PULL v2 0/6] Migration 20240917 patches, Peter Xu, 2024/09/18
- [PULL v2 1/6] tests/qtest/migration: Move a couple of slow tests under g_test_slow,
Peter Xu <=
- [PULL v2 3/6] migration/multifd: Fix loop conditions in multifd_zstd_send_prepare and multifd_zstd_recv, Peter Xu, 2024/09/18
- [PULL v2 2/6] migration/multifd: Fix build for qatzip, Peter Xu, 2024/09/18
- [PULL v2 4/6] softmmu/physmem.c: Keep transaction attribute in address_space_map(), Peter Xu, 2024/09/18
- [PULL v2 6/6] migration/multifd: Fix rb->receivedmap cleanup race, Peter Xu, 2024/09/18
- [PULL v2 5/6] migration/savevm: Remove extra load cleanup calls, Peter Xu, 2024/09/18
- Re: [PULL v2 0/6] Migration 20240917 patches, Peter Maydell, 2024/09/19