diff options
| -rwxr-xr-x | tests/ls/stat-vs-dirent.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/ls/stat-vs-dirent.sh b/tests/ls/stat-vs-dirent.sh index 4be4fadd1..d50ed6a67 100755 --- a/tests/ls/stat-vs-dirent.sh +++ b/tests/ls/stat-vs-dirent.sh @@ -32,7 +32,8 @@ while :; do file=$(sed -n '1s/^ *[0-9][0-9]* //p;q' tmp) # Get its inode number (stat.st_ino) via stat(1)'s call to lstat. - st_ino=$(stat --format=%i "$t/$file") + st_ino=$(stat --format=%i "$t/$file") || + skip_ "error stating: $t/$file" # removed or newlines in name etc. # Make sure that they are the same. # We know from experience that there may be mismatches on some |
