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 <pkrempa@redhat.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
Peter Krempa 2020-04-01 12:37:48 +02:00
parent 6746136a27
commit 203e802d88

View File

@ -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)