diff --git a/lustre/tests/sanity.sh b/lustre/tests/sanity.sh index 89ea9f6a523fb16e0a8215293e62dacb38d14cc1..95a6ac5440851c83e13cd994f7da9bd1df63978e 100644 --- a/lustre/tests/sanity.sh +++ b/lustre/tests/sanity.sh @@ -466,9 +466,7 @@ run_test 17f "symlinks: long and very long symlink name ======================== test_17g() { mkdir -p $DIR/$tdir - for ((i = 0; i < 511; ++i)); do - LONGSYMLINK="${LONGSYMLINK}01234567" - done + LONGSYMLINK="$(dd if=/dev/zero bs=4095 count=1 | tr '\0' 'x')" ln -s $LONGSYMLINK $DIR/$tdir/$tfile ls -l $DIR/$tdir }