diff options
author | Michael S. Tsirkin <mst@redhat.com> | 2015-11-30 13:44:44 +0200 |
---|---|---|
committer | Max Reitz <mreitz@redhat.com> | 2015-12-02 16:28:10 +0100 |
commit | 20873526a329e2145522c29775542dba2900ebe0 (patch) | |
tree | 8713395eaf503f6626bd5655b30fc4a657922f93 /block | |
parent | c2551b47c9b9465962c4000268eda1307f55614a (diff) | |
download | hqemu-20873526a329e2145522c29775542dba2900ebe0.zip hqemu-20873526a329e2145522c29775542dba2900ebe0.tar.gz |
blkdebug: silence warning under qtest
make check always outputs warnings, this
is not nice. Disable blkdebug warnings under qtest.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Message-id: 1448883874-17933-1-git-send-email-mst@redhat.com
Signed-off-by: Max Reitz <mreitz@redhat.com>
Diffstat (limited to 'block')
-rw-r--r-- | block/blkdebug.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/block/blkdebug.c b/block/blkdebug.c index 6860a2b..dee3a0e 100644 --- a/block/blkdebug.c +++ b/block/blkdebug.c @@ -30,6 +30,7 @@ #include "qapi/qmp/qdict.h" #include "qapi/qmp/qint.h" #include "qapi/qmp/qstring.h" +#include "sysemu/qtest.h" typedef struct BDRVBlkdebugState { int state; @@ -583,9 +584,13 @@ static void suspend_request(BlockDriverState *bs, BlkdebugRule *rule) remove_rule(rule); QLIST_INSERT_HEAD(&s->suspended_reqs, &r, next); - printf("blkdebug: Suspended request '%s'\n", r.tag); + if (!qtest_enabled()) { + printf("blkdebug: Suspended request '%s'\n", r.tag); + } qemu_coroutine_yield(); - printf("blkdebug: Resuming request '%s'\n", r.tag); + if (!qtest_enabled()) { + printf("blkdebug: Resuming request '%s'\n", r.tag); + } QLIST_REMOVE(&r, next); g_free(r.tag); |