X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/b31427cd4ad69c359c8f58c492c638e6c330296e..7462c6ac39d86cb8252ec47246569e3ddda35b6a:/testsuite/duplicates.test diff --git a/testsuite/duplicates.test b/testsuite/duplicates.test index 6bbcdd35..3b4ebab0 100644 --- a/testsuite/duplicates.test +++ b/testsuite/duplicates.test @@ -2,7 +2,7 @@ # Copyright (C) 2002 by Martin Pool -# This program is distributable under the terms of the GNU GPL see +# This program is distributable under the terms of the GNU GPL (see # COPYING). # Test rsync handling of duplicate filenames. @@ -19,18 +19,10 @@ # This test is not great, because it is a timing-dependent bug. -. $srcdir/testsuite/rsync.fns - -echo "SKIP THIS FOR NOW; It's a known bug" -exit 77 - -set -x +. "$suitedir/rsync.fns" # Build some hardlinks -fromdir="$scratchdir/from" -todir="$scratchdir/to" - mkdir "$fromdir" name1="$fromdir/name1" name2="$fromdir/name2" @@ -39,19 +31,18 @@ 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... if [ `grep -c '^name1$' "$outfile"` != 1 ] then - test_xfail "name1 was not copied exactly once" + test_fail "name1 was not copied exactly once" fi -if [ `grep -c '^name2$' "$outfile"` != 1 ] +if [ `grep -c '^name2 -> ' "$outfile"` != 1 ] then - test_xfail "name2 was not copied exactly once" + test_fail "name2 was not copied exactly once" fi +# The script would have aborted on error, so getting here means we've won. exit 0 -# last [] may have failed but if we get here then we've won -