There is no longer a need to check file->link_u.links at the start
[rsync/rsync.git] / testsuite / devices.test
CommitLineData
355b8bcd
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
8# Test rsync handling of devices. This can only run if you're root.
9
b0e9bafc 10. "$suitedir/rsync.fns"
355b8bcd 11
355b8bcd
MP
12# Build some hardlinks
13
f5450e79
WD
14case `id -u` in
15'') ;; # If "id" failed, try to continue...
648859bd
WD
160) ;;
17*) if [ -f /usr/bin/fakeroot ]; then
bb21ecac 18 echo "Let's try re-running the script under fakeroot..."
648859bd
WD
19 exec /usr/bin/fakeroot /bin/sh "$0"
20 fi
21 test_skipped "Rsync won't copy devices unless we're root"
22 ;;
f5450e79
WD
23esac
24
355b8bcd
MP
25# TODO: Need to test whether hardlinks are possible on this OS/filesystem
26
27mkdir "$fromdir"
f09dc86a
WD
28mknod "$fromdir/char" c 41 67 || test_skipped "Can't create char device node unless root"
29mknod "$fromdir/char2" c 42 68 || test_skipped "Can't create char device node unless root"
30mknod "$fromdir/char3" c 42 69 || test_skipped "Can't create char device node unless root"
7a176e87 31mknod "$fromdir/block" b 42 69 || test_skipped "Can't create block device node unless root"
ab264c9e
S
32mknod "$fromdir/block2" b 42 73 || test_skipped "Can't create block device node unless root"
33mknod "$fromdir/block3" b 105 73 || test_skipped "Can't create block device node unless root"
fdb6716c 34mkfifo "$fromdir/fifo" || test_skipped "Can't run mkfifo"
355b8bcd 35
40b13938 36checkit "$RSYNC -aHvv \"$fromdir/\" \"$todir/\"" "$fromdir" "$todir" skip_file_diff
355b8bcd 37
05118158 38# The script would have aborted on error, so getting here means we've won.
355b8bcd 39exit 0