mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-22 05:35:25 +00:00
virschematest: Don't bother checking symlinked XMLs
There's plenty symlinks in qemuxml2argvdata and qemuxml2xmlout directories pointing to other files in the same directory. It makes no sense to check those files twice, thus we can simply skip symlinks. Signed-off-by: Peter Krempa <pkrempa@redhat.com> Reviewed-by: Ján Tomko <jtomko@redhat.com> Reviewed-by: Andrea Bolognani <abologna@redhat.com>
This commit is contained in:
parent
91f9a9fb4f
commit
f997fcca71
@ -118,11 +118,15 @@ testSchemaDir(const char *schema,
|
||||
while ((rc = virDirRead(dir, &ent, dir_path)) > 0) {
|
||||
g_autofree char *xml_path = NULL;
|
||||
bool exception = false;
|
||||
GStatBuf sb;
|
||||
|
||||
if (!virStringHasSuffix(ent->d_name, ".xml"))
|
||||
continue;
|
||||
if (ent->d_name[0] == '.')
|
||||
continue;
|
||||
if (g_lstat(ent->d_name, &sb) >= 0 &&
|
||||
S_ISLNK(sb.st_mode))
|
||||
continue;
|
||||
if (filter &&
|
||||
!g_regex_match(filter, ent->d_name, 0, NULL))
|
||||
continue;
|
||||
|
Loading…
Reference in New Issue
Block a user