4401572e4254b99fdff42470dc428fd70bdbe1e1
[rsync/rsync.git] / testsuite / devices.test
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
10 . "$suitedir/rsync.fns"
11
12 # Build some hardlinks
13
14 case `id -u` in
15 '') ;; # If "id" failed, try to continue...
16 0)  ;;
17 *)  if [ -f /usr/bin/fakeroot ]; then
18         exec /usr/bin/fakeroot /bin/sh "$0"
19     fi
20     test_skipped "Rsync won't copy devices unless we're root"
21     ;;
22 esac
23
24 # TODO: Need to test whether hardlinks are possible on this OS/filesystem
25
26 mkdir "$fromdir"
27 mknod "$fromdir/char" c 41 67  || test_skipped "Can't create char device node unless root"
28 mknod "$fromdir/char2" c 42 68  || test_skipped "Can't create char device node unless root"
29 mknod "$fromdir/char3" c 42 69  || test_skipped "Can't create char device node unless root"
30 mknod "$fromdir/block" b 42 69 || test_skipped "Can't create block device node unless root"
31 mknod "$fromdir/block2" b 42 73 || test_skipped "Can't create block device node unless root"
32 mknod "$fromdir/block3" b 105 73 || test_skipped "Can't create block device node unless root"
33 mkfifo "$fromdir/fifo" || test_skipped "Can't run mkfifo"
34
35 checkit "$RSYNC -aHvv \"$fromdir/\" \"$todir/\"" "$fromdir" "$todir" skip_file_diff
36
37 # The script would have aborted on error, so getting here means we've won.
38 exit 0