diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2005-04-29 21:49:20 +0000 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2005-04-29 21:49:20 +0000 |
commit | d62f87f164fc1cedc3e96f01bfa6d9abc4ec1bc2 (patch) | |
tree | da86c284ee40c46ef7afc956eea8a5474f11a415 /tests | |
parent | 57b38dad6b372346ab64775649b22c48619d4221 (diff) | |
download | coreutils-d62f87f164fc1cedc3e96f01bfa6d9abc4ec1bc2.tar.gz coreutils-d62f87f164fc1cedc3e96f01bfa6d9abc4ec1bc2.tar.bz2 coreutils-d62f87f164fc1cedc3e96f01bfa6d9abc4ec1bc2.zip |
Don't use 'set -'.
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/mv/part-hardlink | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/mv/part-hardlink b/tests/mv/part-hardlink index a6d0654b1..dc845c94e 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 |