From: Paul Eggert Date: Fri, 29 Apr 2005 21:49:20 +0000 (+0000) Subject: Don't use 'set -'. X-Git-Tag: CPPI-1_12~897 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d62f87f164fc1cedc3e96f01bfa6d9abc4ec1bc2;p=thirdparty%2Fcoreutils.git Don't use 'set -'. --- diff --git a/tests/mv/part-hardlink b/tests/mv/part-hardlink index a6d0654b15..dc845c94e0 100755 --- a/tests/mv/part-hardlink +++ b/tests/mv/part-hardlink @@ -42,9 +42,9 @@ mv f g $other_partition_tmpdir || fail=1 mv a b $other_partition_tmpdir || fail=1 cd $other_partition_tmpdir -set - `ls -Ci f g` +set `ls -Ci f g` test $1 = $3 || fail=1 -set - `ls -Ci a/1 b/1` +set `ls -Ci a/1 b/1` test $1 = $3 || fail=1 (exit $fail); exit $fail