From: Peter Krempa Date: Wed, 1 Apr 2020 10:37:48 +0000 (+0200) Subject: qemumonitorjsontest: Space out test name concatenation X-Git-Tag: v6.3.0-rc1~273 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=203e802d889d5f2798bbd561e5654ed29d3e2be6;p=thirdparty%2Flibvirt.git qemumonitorjsontest: Space out test name concatenation 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 --- 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)