diff options
Diffstat (limited to 'tests/mv')
-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 |