aboutsummaryrefslogtreecommitdiff
path: root/tests/test-io-task.c
diff options
context:
space:
mode:
authorMarkus Armbruster <armbru@redhat.com>2020-06-30 11:03:30 +0200
committerMarkus Armbruster <armbru@redhat.com>2020-07-02 06:25:28 +0200
commit7b8eb7f848fdd808dbd01f6aa7ae42fd8c64e4b4 (patch)
tree8509cd5889e30feca6a3ad26ea1735e7e4b108e6 /tests/test-io-task.c
parentd8da9e71b6c79c2899c08bb168cd0ae88da70596 (diff)
downloadqemu-7b8eb7f848fdd808dbd01f6aa7ae42fd8c64e4b4.zip
qemu-7b8eb7f848fdd808dbd01f6aa7ae42fd8c64e4b4.tar.gz
qemu-7b8eb7f848fdd808dbd01f6aa7ae42fd8c64e4b4.tar.bz2
tests: Use error_free_or_abort() where appropriate
Replace g_assert(err != NULL); error_free(err); err = NULL; and variations thereof by error_free_or_abort(&err); Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Message-Id: <20200630090351.1247703-6-armbru@redhat.com>
Diffstat (limited to 'tests/test-io-task.c')
-rw-r--r--tests/test-io-task.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/test-io-task.c b/tests/test-io-task.c
index c8a3813..85e7a98 100644
--- a/tests/test-io-task.c
+++ b/tests/test-io-task.c
@@ -240,9 +240,7 @@ static void test_task_thread_failure(void)
object_unref(obj);
g_assert(data.source == obj);
- g_assert(data.err != NULL);
-
- error_free(data.err);
+ error_free_or_abort(&data.err);
self = g_thread_self();