3 # This program is distributable under the terms of the GNU GPL (see
6 # Test the --executability or -E option. -- Matt McCutchen
10 # Put some files in the From directory
12 cat <<EOF >"$fromdir/1"
16 cat <<EOF >"$fromdir/2"
21 chmod 1700 "$fromdir/1" || test_skipped
"Can't chmod"
22 chmod 600 "$fromdir/2"
24 $RSYNC -rvv "$fromdir/" "$todir/"
26 check_perms
"$todir/1" rwx------
1
27 check_perms
"$todir/2" rw-------
1
29 # Mix up the permissions a bit
30 chmod 600 "$fromdir/1"
31 chmod 601 "$fromdir/2"
34 $RSYNC -rvv "$fromdir/" "$todir/"
36 # No -E, so nothing should have changed
37 check_perms
"$todir/1" rwx------
2
38 check_perms
"$todir/2" rw----r--
2
40 $RSYNC -rvvE "$fromdir/" "$todir/"
42 # Now things should have happened!
43 check_perms
"$todir/1" rw-------
3
44 check_perms
"$todir/2" rwx---r-x
3