projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e3b8ad5
)
tests/qtest/migration: Print migration incoming errors
author
Fabiano Rosas
<farosas@suse.de>
Thu, 4 Jan 2024 14:21:42 +0000
(11:21 -0300)
committer
Peter Xu
<peterx@redhat.com>
Tue, 16 Jan 2024 03:16:09 +0000
(11:16 +0800)
We're currently just asserting when incoming migration fails. Let's
print the error message from QMP as well.
Signed-off-by: Fabiano Rosas <farosas@suse.de>
Reviewed-by: Peter Xu <peterx@redhat.com>
Link:
https://lore.kernel.org/r/20240104142144.9680-6-farosas@suse.de
Signed-off-by: Peter Xu <peterx@redhat.com>
tests/qtest/migration-helpers.c
patch
|
blob
|
history
diff --git
a/tests/qtest/migration-helpers.c
b/tests/qtest/migration-helpers.c
index 37e8e812c550b62effc97f5cb06e85b8c9524d79..19384e3fa6147d1576797bf2d532e1d49a4f32a7 100644
(file)
--- a/
tests/qtest/migration-helpers.c
+++ b/
tests/qtest/migration-helpers.c
@@
-111,6
+111,12
@@
void migrate_incoming_qmp(QTestState *to, const char *uri, const char *fmt, ...)
rsp = qtest_qmp(to, "{ 'execute': 'migrate-incoming', 'arguments': %p}",
args);
+
+ if (!qdict_haskey(rsp, "return")) {
+ g_autoptr(GString) s = qobject_to_json_pretty(QOBJECT(rsp), true);
+ g_test_message("%s", s->str);
+ }
+
g_assert(qdict_haskey(rsp, "return"));
qobject_unref(rsp);