Allow $RSYNC_TEST_TMP to indicate a good tmp dir for our tests.
[rsync/rsync.git] / testsuite / chmod-temp-dir.test
1 #! /bin/sh
2
3 # Copyright (C) 2004 by Wayne Davison <wayned@samba.org>
4
5 # This program is distributable under the terms of the GNU GPL (see
6 # COPYING).
7
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).
11
12 . "$suitedir/rsync.fns"
13
14 hands_setup
15
16 tmpdir2=$RSYNC_TEST_TMP
17 if [ x"$tmpdir2" = x ]; then
18     tmpdir2=/tmp
19 fi
20 sdev=`$TOOLDIR/getfsdev $scratchdir`
21 tdev=`$TOOLDIR/getfsdev $tmpdir2`
22 if [ x$sdev = x$tdev ]; then
23     tmpdir2=/var/tmp
24     tdev=`$TOOLDIR/getfsdev $tmpdir2`
25     [ x$sdev = x$tdev ] && test_skipped "Can't find a tmp dir on a different file system"
26 fi
27
28 chmod 440 "$fromdir/text"
29 chmod 500 "$fromdir/dir/text"
30 e="$fromdir/dir/subdir/foobar.baz"
31 chmod 6450 "$e" || chmod 2450 "$e" || chmod 1450 "$e" || chmod 450 "$e"
32 e="$fromdir/dir/subdir/subsubdir/etc-ltr-list"
33 chmod 2670 "$e" || chmod 1670 "$e" || chmod 670 "$e"
34
35 # First a normal copy.
36 runtest "normal copy" 'checkit "$RSYNC -avv --temp-dir=\"$tmpdir2\" \"$fromdir/\" \"$todir\"" "$fromdir" "$todir"'
37
38 # Then we update all the files.
39 runtest "update copy" 'checkit "$RSYNC -avvI --no-whole-file --temp-dir=\"$tmpdir2\" \"$fromdir/\" \"$todir\"" "$fromdir" "$todir"'
40
41 # The script would have aborted on error, so getting here means we've won.
42 exit 0