diff options
| author | Thomas Huth <thuth@redhat.com> | 2023-11-20 12:39:51 +0100 |
|---|---|---|
| committer | Thomas Huth <thuth@redhat.com> | 2023-12-20 10:29:23 +0100 |
| commit | 81c2c9dd5dc2a39b95317ca3a9baff0184f9f097 (patch) | |
| tree | f09275dcac662fe4f780b3aa00bd7c8f6278bb1a /tests/qtest/migration-test.c | |
| parent | b447378e121713faa4c63e8c93a8ebf25218fc40 (diff) | |
| download | focaccia-qemu-81c2c9dd5dc2a39b95317ca3a9baff0184f9f097.tar.gz focaccia-qemu-81c2c9dd5dc2a39b95317ca3a9baff0184f9f097.zip | |
tests/qtest/migration-test: Fix analyze-migration.py for s390x
The migration stream on s390x contains data for the storage_attributes which the analyze-migration.py cannot handle yet. Add the basic code for handling this, so we can re-enable the check in the migration-test. Message-ID: <20231120113951.162090-1-thuth@redhat.com> Reviewed-by: Fabiano Rosas <farosas@suse.de> Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'tests/qtest/migration-test.c')
| -rw-r--r-- | tests/qtest/migration-test.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/qtest/migration-test.c b/tests/qtest/migration-test.c index 0fbaa6a90f..d520c587f7 100644 --- a/tests/qtest/migration-test.c +++ b/tests/qtest/migration-test.c @@ -3360,9 +3360,7 @@ int main(int argc, char **argv) qtest_add_func("/migration/bad_dest", test_baddest); #ifndef _WIN32 - if (!g_str_equal(arch, "s390x")) { - qtest_add_func("/migration/analyze-script", test_analyze_script); - } + qtest_add_func("/migration/analyze-script", test_analyze_script); #endif qtest_add_func("/migration/precopy/unix/plain", test_precopy_unix_plain); qtest_add_func("/migration/precopy/unix/xbzrle", test_precopy_unix_xbzrle); |