X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/eac9dc63e38cad062bde3b8903ca776531b344f1..ee887d98f6f6656e24cd21527307804d932faa29:/testsuite/hardlinks.test diff --git a/testsuite/hardlinks.test b/testsuite/hardlinks.test index 025974d7..2f5399eb 100644 --- a/testsuite/hardlinks.test +++ b/testsuite/hardlinks.test @@ -10,7 +10,7 @@ # specify -H, then hard links are detected and recreated as hardlinks # on the other end. -. $srcdir/testsuite/rsync.fns +. "$suitedir/rsync.fns" set -x @@ -30,9 +30,25 @@ echo "This is the file" > "$name1" ln "$name1" "$name2" || fail "Can't create hardlink" ln "$name2" "$name3" || fail "Can't create hardlink" cp "$name2" "$name4" || fail "Can't copy file" +cat $srcdir/*.c >"$fromdir/text" -checkit "$RSYNC -aHvv \"$fromdir/\" \"$todir/\"" "$fromdir" "$todir" +checkit "$RSYNC -aHivv \"$fromdir/\" \"$todir/\"" "$fromdir" "$todir" -exit 0 -# last [] may have failed but if we get here then we've won +echo "extra extra" >>"$todir/name1" + +checkit "$RSYNC -aHivv --no-whole-file \"$fromdir/\" \"$todir/\"" "$fromdir" "$todir" + +mkdir "$fromdir/subdir" +ln "$name1" "$fromdir/subdir/new-file" +rm "$todir/text" +checkit "$RSYNC -aHivv \"$fromdir/\" \"$todir/\"" "$fromdir" "$todir" + +# Make sure there's nothing wrong with sending a single file with -H +# enabled (this has broken twice so far, so we need this test). +rm -rf "$todir" +$RSYNC -aHivv "$name1" "$todir/" +diff $diffopt "$name1" "$todir" || test_fail "solo copy of name1 failed" + +# The script would have aborted on error, so getting here means we've won. +exit 0