mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-22 05:35:25 +00:00
tests: qemublock: Rename variables in anticipation of new tests
New tests will add new data structures so rename the 'data' structure. Signed-off-by: Peter Krempa <pkrempa@redhat.com> Reviewed-by: John Ferlan <jferlan@redhat.com>
This commit is contained in:
parent
e17193acd2
commit
21498975d1
@ -117,15 +117,16 @@ static int
|
||||
mymain(void)
|
||||
{
|
||||
int ret = 0;
|
||||
struct testBackingXMLjsonXMLdata data;
|
||||
struct testBackingXMLjsonXMLdata xmljsonxmldata;
|
||||
|
||||
virTestCounterReset("qemu storage source xml->json->xml ");
|
||||
|
||||
#define TEST_JSON_FORMAT(tpe, xmlstr) \
|
||||
do { \
|
||||
data.type = tpe; \
|
||||
data.xml = xmlstr; \
|
||||
if (virTestRun(virTestCounterNext(), testBackingXMLjsonXML, &data) < 0) \
|
||||
xmljsonxmldata.type = tpe; \
|
||||
xmljsonxmldata.xml = xmlstr; \
|
||||
if (virTestRun(virTestCounterNext(), testBackingXMLjsonXML, \
|
||||
&xmljsonxmldata) < 0) \
|
||||
ret = -1; \
|
||||
} while (0)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user