X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/06464f55e26e1f26e10c04f4a11a4d85fadbd5f7..e5f6a04d1504e4928626d75fe802eff326313d37:/testsuite/duplicates.test diff --git a/testsuite/duplicates.test b/testsuite/duplicates.test index 9e47c70a..23d2994e 100644 --- a/testsuite/duplicates.test +++ b/testsuite/duplicates.test @@ -19,17 +19,12 @@ # This test is not great, because it is a timing-dependent bug. -. $srcdir/testsuite/rsync.fns - -test_skipped "Known minor bug in this code" +. "$suitedir/rsync.fns" set -x # Build some hardlinks -fromdir="$scratchdir/from" -todir="$scratchdir/to" - mkdir "$fromdir" name1="$fromdir/name1" name2="$fromdir/name2" @@ -44,13 +39,12 @@ checkit "$RSYNC -avv \"$fromdir/\" \"$fromdir/\" \"$fromdir/\" \"$fromdir/\" \"$ # 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 -