X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/b0e9bafc78e066b1d67c07c8f9c022a4c900ed27..bb21ecac5bf5cb6e586476bbc754c709f71b3252:/testsuite/devices.test diff --git a/testsuite/devices.test b/testsuite/devices.test index ed84fb48..2a6c8a85 100644 --- a/testsuite/devices.test +++ b/testsuite/devices.test @@ -9,14 +9,17 @@ . "$suitedir/rsync.fns" -set -x - # Build some hardlinks case `id -u` in '') ;; # If "id" failed, try to continue... -0) ;; -*) test_skipped "Rsync won't copy devices unless we're root" ;; +0) ;; +*) if [ -f /usr/bin/fakeroot ]; then + echo "Let's try re-running the script under fakeroot..." + exec /usr/bin/fakeroot /bin/sh "$0" + fi + test_skipped "Rsync won't copy devices unless we're root" + ;; esac # TODO: Need to test whether hardlinks are possible on this OS/filesystem @@ -28,8 +31,9 @@ mknod "$fromdir/char3" c 42 69 || test_skipped "Can't create char device node u mknod "$fromdir/block" b 42 69 || test_skipped "Can't create block device node unless root" mknod "$fromdir/block2" b 42 73 || test_skipped "Can't create block device node unless root" mknod "$fromdir/block3" b 105 73 || test_skipped "Can't create block device node unless root" +mkfifo "$fromdir/fifo" || test_skipped "Can't run mkfifo" -checkit "$RSYNC -aHvv \"$fromdir/\" \"$todir/\"" "$fromdir" "$todir" +checkit "$RSYNC -aHvv \"$fromdir/\" \"$todir/\"" "$fromdir" "$todir" skip_file_diff # The script would have aborted on error, so getting here means we've won. exit 0