Fixed our supplied getnameinfo()'s ability to do a reverse lookup,
[rsync/qnx.git] / testsuite / chmod-temp-dir.test
blobe5e6a84f675370fc9db8eaa4dca361dbc32a828f
1 #! /bin/sh
3 # Copyright (C) 2004 by Wayne Davison <wayned@samba.org>
5 # This program is distributable under the terms of the GNU GPL (see
6 # COPYING).
8 # Test that various read-only and set[ug]id permissions work properly,
9 # even when using a --temp-dir option (which we try to point at a
10 # different filesystem than the destination dir).
12 . "$suitedir/rsync.fns"
14 hands_setup
16 tmpdir2=/tmp
17 sdev=`$TOOLDIR/getfsdev $scratchdir`
18 tdev=`$TOOLDIR/getfsdev $tmpdir2`
19 if [ x$sdev = x$tdev ]; then
20 tmpdir2=/var/tmp
21 tdev=`$TOOLDIR/getfsdev $tmpdir2`
22 [ x$sdev = x$tdev ] && test_skipped "Can't find a tmp dir on a different file system"
25 chmod 440 "$fromdir/text"
26 chmod 500 "$fromdir/dir/text"
27 e="$fromdir/dir/subdir/foobar.baz"
28 chmod 6450 "$e" || chmod 2450 "$e" || chmod 1450 "$e" || chmod 450 "$e"
29 e="$fromdir/dir/subdir/subsubdir/etc-ltr-list"
30 chmod 2670 "$e" || chmod 1670 "$e" || chmod 670 "$e"
32 # First a normal copy.
33 runtest "normal copy" 'checkit "$RSYNC -avv --temp-dir=\"$tmpdir2\" \"$fromdir/\" \"$todir\"" "$fromdir" "$todir"'
35 # Then we update all the files.
36 runtest "update copy" 'checkit "$RSYNC -avvI --no-whole-file --temp-dir=\"$tmpdir2\" \"$fromdir/\" \"$todir\"" "$fromdir" "$todir"'
38 # The script would have aborted on error, so getting here means we've won.
39 exit 0