3 # Copyright (C) 2002 by Martin Pool <mbp@samba.org>
5 # This program is distributable under the terms of the GNU GPL (see
8 # Test rsync handling of devices. This can only run if you're root.
10 .
"$suitedir/rsync.fns"
12 chkfile
="$scratchdir/rsync.chk"
13 outfile
="$scratchdir/rsync.out"
15 # Build some hardlinks
19 $RSYNC --version |
grep ", xattrs" >/dev
/null || test_skipped
"Rsync needs xattrs for fake device tests"
20 RSYNC
="$RSYNC --fake-super"
21 TLS_ARGS
="$TLS_ARGS --fake-super"
22 case "`xattr 2>&1`" in
34 xattr
-s 'rsync.%stat' "$mode $maj,$min 0:0" "$fn"
48 setfattr
-n 'user.rsync.%stat' -v "$mode $maj,$min 0:0" "$fn"
55 '') ;; # If "id" failed, try to continue...
57 *) if [ -f /usr
/bin
/fakeroot
]; then
58 echo "Let's try re-running the script under fakeroot..."
59 exec /usr
/bin
/fakeroot
/bin
/sh
$RUNSHFLAGS "$0"
61 test_skipped
"Rsync needs root/fakeroot for device tests"
67 # TODO: Need to test whether hardlinks are possible on this OS/filesystem
71 mknod
"$fromdir/char" c
41 67 || test_skipped
"Can't create char device node"
72 mknod
"$fromdir/char2" c
42 68 || test_skipped
"Can't create char device node"
73 mknod
"$fromdir/char3" c
42 69 || test_skipped
"Can't create char device node"
74 mknod
"$fromdir/block" b
42 69 || test_skipped
"Can't create block device node"
75 mknod
"$fromdir/block2" b
42 73 || test_skipped
"Can't create block device node"
76 mknod
"$fromdir/block3" b
105 73 || test_skipped
"Can't create block device node"
77 ln "$fromdir/block3" "$fromdir/block2.5" ||
echo "Skipping hard-linked device test..."
78 mkfifo "$fromdir/fifo" || mknod
"$fromdir/fifo" p || test_skipped
"Can't run mkfifo"
79 # Work around time rounding/truncating issue by touching both files.
80 touch -r "$fromdir/block" "$fromdir/block" "$fromdir/block2"
82 $RSYNC -ai "$fromdir/block" "$todir/block2" \
87 diff $diffopt "$chkfile" "$outfile" || test_fail
"test 1 failed"
89 $RSYNC -ai "$fromdir/block2" "$todir/block" \
94 diff $diffopt "$chkfile" "$outfile" || test_fail
"test 2 failed"
98 $RSYNC -Di "$fromdir/block3" "$todir/block" \
100 cat <<EOT >"$chkfile"
103 diff $diffopt "$chkfile" "$outfile" || test_fail
"test 3 failed"
105 $RSYNC -aiHvv "$fromdir/" "$todir/" \
108 cat <<EOT >"$chkfile"
113 hD$all_plus block2.5 => block3
119 if test ! -r "$fromdir/block2.5"; then
120 sed -e '/block2\.5/d' <"$chkfile" >"$chkfile.new"
121 mv "$chkfile.new" "$chkfile"
123 diff $diffopt "$chkfile" "$outfile" || test_fail
"test 4 failed"
125 echo "check how the directory listings compare with diff:"
127 ( cd "$fromdir" && rsync_ls_lR .
) > "$tmpdir/ls-from"
128 ( cd "$todir" && rsync_ls_lR .
) > "$tmpdir/ls-to"
129 diff $diffopt "$tmpdir/ls-from" "$tmpdir/ls-to"
131 if test -b "$fromdir/block2.5"; then
133 $RSYNC -aii --link-dest="$todir" "$fromdir/" "$chkdir/" \
135 cat <<EOT >"$chkfile"
146 diff $diffopt "$chkfile" "$outfile" || test_fail
"test 4 failed"
149 # The script would have aborted on error, so getting here means we've won.