X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/1623ba68891761a3a8d44acf35afeb9d4d5e8ba2..3c30b9905932e39b170be8e0521370727f264635:/testsuite/duplicates.test diff --git a/testsuite/duplicates.test b/testsuite/duplicates.test index 4f5080d3..a81fe687 100644 --- a/testsuite/duplicates.test +++ b/testsuite/duplicates.test @@ -36,7 +36,7 @@ ln -s "$name1" "$name2" || fail "can't create symlink" outfile="$scratchdir/rsync.out" -checkit "rsync -avv \"$fromdir/\" \"$fromdir/\" \"$fromdir/\" \"$fromdir/\" \"$fromdir/\" \"$fromdir/\" \"$fromdir/\" \"$fromdir/\" \"$fromdir/\" \"$fromdir/\" \"$todir/\"" "$fromdir" "$todir" \ +checkit "$RSYNC -avv \"$fromdir/\" \"$fromdir/\" \"$fromdir/\" \"$fromdir/\" \"$fromdir/\" \"$fromdir/\" \"$fromdir/\" \"$fromdir/\" \"$fromdir/\" \"$fromdir/\" \"$todir/\"" "$fromdir" "$todir" \ | tee "$outfile" # Make sure each file was only copied once... @@ -44,11 +44,10 @@ if [ `grep -c '^name1$' "$outfile"` != 1 ] then test_fail "name1 was not copied exactly once" fi -if [ `grep -c '^name2$' "$outfile"` != 1 ] +if [ `grep -c '^name2 -> ' "$outfile"` != 1 ] then test_fail "name2 was not copied exactly once" fi exit 0 # last [] may have failed but if we get here then we've won -