aboutsummaryrefslogtreecommitdiff
path: root/tests/qtest
diff options
context:
space:
mode:
authorNicholas Piggin <npiggin@gmail.com>2024-05-25 23:12:39 +1000
committerThomas Huth <thuth@redhat.com>2024-07-02 08:02:01 +0200
commitada9311de31720c1b347e42582c0540914f2ffa6 (patch)
treeb70207a9195e31557b3d26389d9a4b2397a057c4 /tests/qtest
parentc1991c0984243850faa267735db6f624f2aea06a (diff)
downloadqemu-ada9311de31720c1b347e42582c0540914f2ffa6.zip
qemu-ada9311de31720c1b347e42582c0540914f2ffa6.tar.gz
qemu-ada9311de31720c1b347e42582c0540914f2ffa6.tar.bz2
tests/qtest/migration-test: enable on s390x with TCG
s390x with TCG is more stable now. Enable it. Signed-off-by: Nicholas Piggin <npiggin@gmail.com> Message-Id: <20240525131241.378473-3-npiggin@gmail.com> Reviewed-by: Prasad Pandit <pjp@fedoraproject.org> [thuth: Added "with TCG" to the commit message] Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'tests/qtest')
-rw-r--r--tests/qtest/migration-test.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/qtest/migration-test.c b/tests/qtest/migration-test.c
index 571fc13..70b606b 100644
--- a/tests/qtest/migration-test.c
+++ b/tests/qtest/migration-test.c
@@ -3823,16 +3823,6 @@ int main(int argc, char **argv)
test_vmstate_checker_script);
#endif
- /*
- * On s390x with TCG, migration is observed to hang due to the 'pending'
- * state of the flic interrupt controller not being migrated or
- * reconstructed post-migration. Disable it until the problem is resolved.
- */
- if (g_str_equal(arch, "s390x") && !has_kvm) {
- g_test_message("Skipping tests: s390x host with KVM is required");
- goto test_add_done;
- }
-
if (is_x86) {
migration_test_add("/migration/precopy/unix/suspend/live",
test_precopy_unix_suspend_live);
@@ -4036,8 +4026,6 @@ int main(int argc, char **argv)
test_vcpu_dirty_limit);
}
-test_add_done:
-
ret = g_test_run();
g_assert_cmpint(ret, ==, 0);