Use the new HAVE_GETGROUPS define.
[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
19# TODO: Need to test whether hardlinks are possible on this OS/filesystem
20
21mkdir "$fromdir"
7a176e87
MP
22mknod "$fromdir/char" c 42 69 || test_skipped "Can't create char device node unless root"
23mknod "$fromdir/block" b 42 69 || test_skipped "Can't create block device node unless root"
ab264c9e
S
24mknod "$fromdir/block2" b 42 73 || test_skipped "Can't create block device node unless root"
25mknod "$fromdir/block3" b 105 73 || test_skipped "Can't create block device node unless root"
355b8bcd 26
06464f55 27checkit "$RSYNC -aHvv \"$fromdir/\" \"$todir/\"" "$fromdir" "$todir"
355b8bcd
MP
28
29exit 0
30# last [] may have failed but if we get here then we've won
31