From 203e802d889d5f2798bbd561e5654ed29d3e2be6 Mon Sep 17 00:00:00 2001 From: Peter Krempa Date: Wed, 1 Apr 2020 12:37:48 +0200 Subject: [PATCH] qemumonitorjsontest: Space out test name concatenation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The test name is concatenated from a prefix with the test name, but no space was added so the output looked wrong. Signed-off-by: Peter Krempa Reviewed-by: Ján Tomko --- tests/qemumonitorjsontest.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/qemumonitorjsontest.c b/tests/qemumonitorjsontest.c index 472775a3cf..fea95ed7c0 100644 --- a/tests/qemumonitorjsontest.c +++ b/tests/qemumonitorjsontest.c @@ -3272,7 +3272,7 @@ mymain(void) qapiData.query = qry; \ qapiData.rc = scc; \ qapiData.replyobj = rplobj; \ - if (virTestRun("qapi schema query" nme, testQAPISchemaQuery, &qapiData) < 0)\ + if (virTestRun("qapi schema query " nme, testQAPISchemaQuery, &qapiData) < 0)\ ret = -1; \ } while (0) @@ -3304,7 +3304,7 @@ mymain(void) qapiData.query = rootquery; \ qapiData.success = scc; \ qapiData.json = jsonstr; \ - if (virTestRun("qapi schema validate" nme, testQAPISchemaValidate, &qapiData) < 0)\ + if (virTestRun("qapi schema validate " nme, testQAPISchemaValidate, &qapiData) < 0)\ ret = -1; \ } while (0)