test: quieten warning noise while forking

When closing file descriptors post-fork, ignore "." and ".." directory
entries, so the test log doesn't have distracting errors like:

Error converting name fd 0 .:
Error converting name fd 0 ..:

Signed-off-by: John Levon <john.levon@nutanix.com>
This commit is contained in:
John Levon 2021-08-01 18:53:25 +01:00 committed by Thomas Monjalon
parent 90a05c5012
commit b13da15ec2

View File

@ -90,6 +90,11 @@ process_dup(const char *const argv[], int numargs, const char *env_value)
}
while ((dirent = readdir(dir)) != NULL) {
if (strcmp(dirent->d_name, ".") == 0 ||
strcmp(dirent->d_name, "..") == 0)
continue;
errno = 0;
fd = strtol(dirent->d_name, &endptr, 10);
if (errno != 0 || endptr[0] != '\0') {