test: Drop useless prefix for genericxml2xml test data

There's no reason for the files to have generic- prefix
since they all live under genericxml2xmlindata and
genericxml2xmloutdata directories.

Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
Michal Privoznik 2017-12-05 08:00:41 +01:00
parent 4d82c8fd61
commit ab7a2fe230
51 changed files with 2 additions and 2 deletions

View File

@ -32,9 +32,9 @@ testCompareXMLToXMLHelper(const void *data)
char *xml_out = NULL;
int ret = -1;
if (virAsprintf(&xml_in, "%s/genericxml2xmlindata/generic-%s.xml",
if (virAsprintf(&xml_in, "%s/genericxml2xmlindata/%s.xml",
abs_srcdir, info->name) < 0 ||
virAsprintf(&xml_out, "%s/genericxml2xmloutdata/generic-%s.xml",
virAsprintf(&xml_out, "%s/genericxml2xmloutdata/%s.xml",
abs_srcdir, info->name) < 0)
goto cleanup;