Make sure that the $chkdir has the same mtime/etc. as the
[rsync/rsync.git] / testsuite / hardlinks.test
index 31005e7..39e0a17 100644 (file)
@@ -31,7 +31,15 @@ ln "$name1" "$name2" || fail "Can't create hardlink"
 ln "$name2" "$name3" || fail "Can't create hardlink"
 cp "$name2" "$name4" || fail "Can't copy file"
 
-checkit "$RSYNC -aHvv \"$fromdir/\" \"$todir/\"" "$fromdir" "$todir"
+checkit "$RSYNC -aHivv \"$fromdir/\" \"$todir/\"" "$fromdir" "$todir"
+rm -rf "$todir"
+
+# Make sure there's nothing wrong with sending a single file with -H
+# enabled (this has had a problem twice now, so we need this).
+mkdir "$chkdir"
+cp -p "$name1" "$chkdir"
+rsync -avvi -f '-! */' "$fromdir/" "$chkdir/"
+checkit "$RSYNC -aHivv \"$name1\" \"$todir/\"" "$chkdir" "$todir"
 
 # The script would have aborted on error, so getting here means we've won.
 exit 0