If we're listing a device, output the major and minor device numbers.
[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
10. $srcdir/testsuite/rsync.fns
11
12set -x
13
14# Build some hardlinks
15
16fromdir="$scratchdir/from"
17todir="$scratchdir/to"
18
f5450e79
WD
19case `id -u` in
20'') ;; # If "id" failed, try to continue...
210) ;;
22*) test_skipped "Rsync won't copy devices unless we're root" ;;
23esac
24
355b8bcd
MP
25# TODO: Need to test whether hardlinks are possible on this OS/filesystem
26
27mkdir "$fromdir"
7a176e87
MP
28mknod "$fromdir/char" c 42 69 || test_skipped "Can't create char device node unless root"
29mknod "$fromdir/block" b 42 69 || test_skipped "Can't create block device node unless root"
ab264c9e
S
30mknod "$fromdir/block2" b 42 73 || test_skipped "Can't create block device node unless root"
31mknod "$fromdir/block3" b 105 73 || test_skipped "Can't create block device node unless root"
355b8bcd 32
06464f55 33checkit "$RSYNC -aHvv \"$fromdir/\" \"$todir/\"" "$fromdir" "$todir"
355b8bcd 34
05118158 35# The script would have aborted on error, so getting here means we've won.
355b8bcd 36exit 0