Switching to GPL 3.
[rsync/rsync.git] / testsuite / hardlinks.test
CommitLineData
b7815375
MP
1#! /bin/sh
2
3# Copyright (C) 2002 by Martin Pool <mbp@samba.org>
4
5# This program is distributable under the terms of the GNU GPL (see
6# COPYING).
7
f92f5b16
WD
8# Test rsync handling of hardlinks. By default, rsync does not
9# detect symlinks and they get split into different files. If you
b7815375
MP
10# specify -H, then hard links are detected and recreated as hardlinks
11# on the other end.
12
e920830e 13. "$suitedir/rsync.fns"
b7815375 14
b7815375
MP
15# Build some hardlinks
16
17fromdir="$scratchdir/from"
18todir="$scratchdir/to"
19
20# TODO: Need to test whether hardlinks are possible on this OS/filesystem
21
22mkdir "$fromdir"
23name1="$fromdir/name1"
24name2="$fromdir/name2"
25name3="$fromdir/name3"
26name4="$fromdir/name4"
27echo "This is the file" > "$name1"
28ln "$name1" "$name2" || fail "Can't create hardlink"
29ln "$name2" "$name3" || fail "Can't create hardlink"
30cp "$name2" "$name4" || fail "Can't copy file"
ee887d98
WD
31cat $srcdir/*.c >"$fromdir/text"
32
33checkit "$RSYNC -aHivv \"$fromdir/\" \"$todir/\"" "$fromdir" "$todir"
34
35echo "extra extra" >>"$todir/name1"
36
37checkit "$RSYNC -aHivv --no-whole-file \"$fromdir/\" \"$todir/\"" "$fromdir" "$todir"
38
de8252f6
WD
39# Add a new link in a new subdirectory to test that we don't try to link
40# the files before the directory gets created.
ee887d98
WD
41mkdir "$fromdir/subdir"
42ln "$name1" "$fromdir/subdir/new-file"
43rm "$todir/text"
b7815375 44
2cfe44ee 45checkit "$RSYNC -aHivv \"$fromdir/\" \"$todir/\"" "$fromdir" "$todir"
7a6e294f 46
de8252f6
WD
47# Do some duplicate copies using --link-dest and --copy-dest to test that
48# we hard-link all locally-inherited items.
49checkit "$RSYNC -aHivv --link-dest=\"$todir\" \"$fromdir/\" \"$chkdir/\"" "$todir" "$chkdir"
50
51rm -rf "$chkdir"
52checkit "$RSYNC -aHivv --copy-dest=\"$todir\" \"$fromdir/\" \"$chkdir/\"" "$fromdir" "$chkdir"
53
7a6e294f 54# Make sure there's nothing wrong with sending a single file with -H
2e42adb3 55# enabled (this has broken twice so far, so we need this test).
ee887d98 56rm -rf "$todir"
2e42adb3
WD
57$RSYNC -aHivv "$name1" "$todir/"
58diff $diffopt "$name1" "$todir" || test_fail "solo copy of name1 failed"
b7815375 59
05118158 60# The script would have aborted on error, so getting here means we've won.
b7815375 61exit 0