File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / rsync / testsuite / chmod-temp-dir.test
Revision 1.1.1.2 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Wed Mar 17 00:32:36 2021 UTC (3 years, 3 months ago) by misho
Branches: rsync, MAIN
CVS tags: v3_2_3, HEAD
rsync 3.2.3

    1: #! /bin/sh
    2: 
    3: # Copyright (C) 2004-2020 Wayne Davison
    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: sdev=`$TOOLDIR/getfsdev $scratchdir`
   17: tdev=$sdev
   18: 
   19: for tmpdir2 in "${RSYNC_TEST_TMP:-/override-tmp-not-specified}" /run/shm /var/tmp /tmp; do
   20:     [ -d "$tmpdir2" -a -w "$tmpdir2" ] || continue
   21:     tdev=`$TOOLDIR/getfsdev "$tmpdir2"`
   22:     [ x$sdev != x$tdev ] && break
   23: done
   24: 
   25: [ x$sdev = x$tdev ] && test_skipped "Can't find a tmp dir on a different file system"
   26: 
   27: chmod 440 "$fromdir/text"
   28: chmod 500 "$fromdir/dir/text"
   29: e="$fromdir/dir/subdir/foobar.baz"
   30: chmod 6450 "$e" || chmod 2450 "$e" || chmod 1450 "$e" || chmod 450 "$e"
   31: e="$fromdir/dir/subdir/subsubdir/etc-ltr-list"
   32: chmod 2670 "$e" || chmod 1670 "$e" || chmod 670 "$e"
   33: 
   34: # First a normal copy.
   35: runtest "normal copy" 'checkit "$RSYNC -avv --temp-dir=\"$tmpdir2\" \"$fromdir/\" \"$todir\"" "$fromdir" "$todir"'
   36: 
   37: # Then we update all the files.
   38: runtest "update copy" 'checkit "$RSYNC -avvI --no-whole-file --temp-dir=\"$tmpdir2\" \"$fromdir/\" \"$todir\"" "$fromdir" "$todir"'
   39: 
   40: # The script would have aborted on error, so getting here means we've won.
   41: exit 0

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>