From: Wayne Davison Date: Tue, 26 Apr 2005 16:25:01 +0000 (+0000) Subject: Added a new test to check how we interact with --link-dest and X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/de8252f67fb4cc22b4c6264ea87c6c43bb3c69d5 Added a new test to check how we interact with --link-dest and --copy-dest. --- diff --git a/testsuite/hardlinks.test b/testsuite/hardlinks.test index 2f5399eb..924ca44c 100644 --- a/testsuite/hardlinks.test +++ b/testsuite/hardlinks.test @@ -38,12 +38,21 @@ echo "extra extra" >>"$todir/name1" checkit "$RSYNC -aHivv --no-whole-file \"$fromdir/\" \"$todir/\"" "$fromdir" "$todir" +# Add a new link in a new subdirectory to test that we don't try to link +# the files before the directory gets created. mkdir "$fromdir/subdir" ln "$name1" "$fromdir/subdir/new-file" rm "$todir/text" checkit "$RSYNC -aHivv \"$fromdir/\" \"$todir/\"" "$fromdir" "$todir" +# Do some duplicate copies using --link-dest and --copy-dest to test that +# we hard-link all locally-inherited items. +checkit "$RSYNC -aHivv --link-dest=\"$todir\" \"$fromdir/\" \"$chkdir/\"" "$todir" "$chkdir" + +rm -rf "$chkdir" +checkit "$RSYNC -aHivv --copy-dest=\"$todir\" \"$fromdir/\" \"$chkdir/\"" "$fromdir" "$chkdir" + # 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"