From: Wayne Davison Date: Fri, 9 Apr 2004 00:36:45 +0000 (+0000) Subject: Added a couple extra character devices to be copied. X-Git-Tag: v2.6.1pre2~44 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f09dc86ab65bec2f40bd5651a8bf08dd4d00803f;p=thirdparty%2Frsync.git Added a couple extra character devices to be copied. --- diff --git a/testsuite/devices.test b/testsuite/devices.test index ca186eb7..04b9e6a6 100644 --- a/testsuite/devices.test +++ b/testsuite/devices.test @@ -25,7 +25,9 @@ esac # TODO: Need to test whether hardlinks are possible on this OS/filesystem mkdir "$fromdir" -mknod "$fromdir/char" c 42 69 || test_skipped "Can't create char device node unless root" +mknod "$fromdir/char" c 41 67 || test_skipped "Can't create char device node unless root" +mknod "$fromdir/char2" c 42 68 || test_skipped "Can't create char device node unless root" +mknod "$fromdir/char3" c 42 69 || test_skipped "Can't create char device node unless root" 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"