From: Jim Meyering Date: Fri, 4 Oct 2002 11:25:09 +0000 (+0000) Subject: add a comment X-Git-Tag: v4.5.2~16 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=215f635780212d95bfcd27c2f7c1645aab92bc78;p=thirdparty%2Fcoreutils.git add a comment --- diff --git a/tests/du/slink b/tests/du/slink index 05b1df7f77..36fd31ab3f 100755 --- a/tests/du/slink +++ b/tests/du/slink @@ -24,8 +24,9 @@ fail=0 symlink_name_lengths='1 15 16 31 32 59 60 63 64 127 128 255 256 511 512 1024' for len in $symlink_name_lengths; do name=`yes|tr '\n' y|head -c$len` - # Ignore failures. - ln -fs $name $len > /dev/null 2>&1 && symlinks="$symlinks $len" + # Record the names of symlinks that are successfully created. + ln -fs $name $len > /dev/null 2>&1 \ + && symlinks="$symlinks $len" done du -a $symlinks > out || fail=1