mirror of
https://github.com/RsyncProject/rsync.git
synced 2026-01-29 17:21:48 -05:00
new rsync being in $PATH; it may pick up an old version, invalidating the result of the tests. This is what the other tests do already. Submitted by: Joel Shprentz <ShprentzJ@nima.mil>
39 lines
1003 B
Bash
39 lines
1003 B
Bash
#! /bin/sh
|
|
|
|
# Copyright (C) 2002 by Martin Pool <mbp@samba.org>
|
|
|
|
# This program is distributable under the terms of the GNU GPL (see
|
|
# COPYING).
|
|
|
|
# Test rsync handling of hardlinks. By default (in 2.5.1) rsync does
|
|
# not detect symlinks and they get split into different files. If you
|
|
# specify -H, then hard links are detected and recreated as hardlinks
|
|
# on the other end.
|
|
|
|
. $srcdir/testsuite/rsync.fns
|
|
|
|
set -x
|
|
|
|
# Build some hardlinks
|
|
|
|
fromdir="$scratchdir/from"
|
|
todir="$scratchdir/to"
|
|
|
|
# TODO: Need to test whether hardlinks are possible on this OS/filesystem
|
|
|
|
mkdir "$fromdir"
|
|
name1="$fromdir/name1"
|
|
name2="$fromdir/name2"
|
|
name3="$fromdir/name3"
|
|
name4="$fromdir/name4"
|
|
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"
|
|
|
|
checkit "$RSYNC -aHvv \"$fromdir/\" \"$todir/\"" "$fromdir" "$todir"
|
|
|
|
exit 0
|
|
# last [] may have failed but if we get here then we've won
|
|
|