Don't use 'set -'.

This commit is contained in:
Paul Eggert 2005-04-29 21:49:20 +00:00
parent 57b38dad6b
commit d62f87f164

View File

@ -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