mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-22 17:34:18 +03:00
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:
parent
6746136a27
commit
203e802d88
@ -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)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user