Changed some instances of \" in checkit calls to '.
[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
4bde45f6
WD
8# Test rsync handling of hardlinks. By default, rsync does not detect
9# hard links and they get sent as separate files. If you specify -H,
10# then hard links are detected and linked together on the receiver.
b7815375 11
e920830e 12. "$suitedir/rsync.fns"
b7815375 13
b7815375
MP
14# Build some hardlinks
15
16fromdir="$scratchdir/from"
17todir="$scratchdir/to"
18
19# TODO: Need to test whether hardlinks are possible on this OS/filesystem
20
21mkdir "$fromdir"
22name1="$fromdir/name1"
23name2="$fromdir/name2"
24name3="$fromdir/name3"
25name4="$fromdir/name4"
26echo "This is the file" > "$name1"
27ln "$name1" "$name2" || fail "Can't create hardlink"
28ln "$name2" "$name3" || fail "Can't create hardlink"
29cp "$name2" "$name4" || fail "Can't copy file"
ee887d98
WD
30cat $srcdir/*.c >"$fromdir/text"
31
7918f244 32checkit "$RSYNC -aHivv '$fromdir/' '$todir/'" "$fromdir" "$todir"
ee887d98
WD
33
34echo "extra extra" >>"$todir/name1"
35
7918f244 36checkit "$RSYNC -aHivv --no-whole-file '$fromdir/' '$todir/'" "$fromdir" "$todir"
ee887d98 37
de8252f6
WD
38# Add a new link in a new subdirectory to test that we don't try to link
39# the files before the directory gets created.
ee887d98
WD
40mkdir "$fromdir/subdir"
41ln "$name1" "$fromdir/subdir/new-file"
42rm "$todir/text"
b7815375 43
7918f244 44checkit "$RSYNC -aHivv '$fromdir/' '$todir/'" "$fromdir" "$todir"
7a6e294f 45
de8252f6
WD
46# Do some duplicate copies using --link-dest and --copy-dest to test that
47# we hard-link all locally-inherited items.
7918f244 48checkit "$RSYNC -aHivv --link-dest='$todir' '$fromdir/' '$chkdir/'" "$todir" "$chkdir"
de8252f6
WD
49
50rm -rf "$chkdir"
7918f244 51checkit "$RSYNC -aHivv --copy-dest='$todir' '$fromdir/' '$chkdir/'" "$fromdir" "$chkdir"
de8252f6 52
7a6e294f 53# Make sure there's nothing wrong with sending a single file with -H
2e42adb3 54# enabled (this has broken twice so far, so we need this test).
ee887d98 55rm -rf "$todir"
2e42adb3
WD
56$RSYNC -aHivv "$name1" "$todir/"
57diff $diffopt "$name1" "$todir" || test_fail "solo copy of name1 failed"
b7815375 58
05118158 59# The script would have aborted on error, so getting here means we've won.
b7815375 60exit 0