summaryrefslogtreecommitdiff
path: root/softmmu/qtest.c
diff options
context:
space:
mode:
authorGerd Hoffmann <kraxel@redhat.com>2020-09-23 11:12:17 +0200
committerGerd Hoffmann <kraxel@redhat.com>2020-10-15 10:43:48 +0200
commit501093207eb1ed4845e0a65ee1ce7db7b9676e0b (patch)
tree52ab67735a1879280dd19403e73c4557b31ae323 /softmmu/qtest.c
parent57c98ea9acdcef5021f5671efa6475a5794a51c4 (diff)
module: silence errors for module_load_qom_all().
Add mayfail bool parameter to module loading functions. Set it to true for module_load_qom_all() because device modules might not load into all system emulation variants. qemu-system-s390x for example will not load qxl because it lacks vga support. Makes "make check" less chatty. Drop module_loaded_qom_all check in module_load_qom_one to make sure we see errors for explicit load requests, i.e. module_load_qom_one("qxl") failing will log an error no matter whenever module_load_qom_all() was called before or not. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Acked-by: Paolo Bonzini <pbonzini@redhat.com> Message-id: 20200923091217.22662-1-kraxel@redhat.com
Diffstat (limited to 'softmmu/qtest.c')
-rw-r--r--softmmu/qtest.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/softmmu/qtest.c b/softmmu/qtest.c
index 2c6e8dc858..7965dc9a16 100644
--- a/softmmu/qtest.c
+++ b/softmmu/qtest.c
@@ -757,7 +757,7 @@ static void qtest_process_command(CharBackend *chr, gchar **words)
g_assert(words[1] && words[2]);
qtest_send_prefix(chr);
- if (module_load_one(words[1], words[2])) {
+ if (module_load_one(words[1], words[2], false)) {
qtest_sendf(chr, "OK\n");
} else {
qtest_sendf(chr, "FAIL\n");