Make use of $suitedir.

This commit is contained in:
Wayne Davison
2009-10-24 11:42:29 -07:00
parent 705132bcee
commit 2170667802
8 changed files with 8 additions and 9 deletions

View File

@@ -5,7 +5,7 @@
# Test that rsync handles basic ACL preservation.
. $srcdir/testsuite/rsync.fns
. $suitedir/rsync.fns
$RSYNC --version | grep ", ACLs" >/dev/null || test_skipped "Rsync is configured without ACL support"

View File

@@ -7,7 +7,7 @@
# Test that the --chmod option functions correctly.
. $srcdir/testsuite/rsync.fns
. $suitedir/rsync.fns
# Build some files

View File

@@ -5,7 +5,7 @@
# Test that rsync obeys default ACLs. -- Matt McCutchen
. $srcdir/testsuite/rsync.fns
. $suitedir/rsync.fns
$RSYNC --version | grep ", ACLs" >/dev/null || test_skipped "Rsync is configured without ACL support"

View File

@@ -5,7 +5,7 @@
# Test that rsync obeys directory setgid. -- Matt McCutchen
. $srcdir/testsuite/rsync.fns
. $suitedir/rsync.fns
umask 077

View File

@@ -5,7 +5,7 @@
# Test the --executability or -E option. -- Matt McCutchen
. $srcdir/testsuite/rsync.fns
. $suitedir/rsync.fns
# Put some files in the From directory
mkdir "$fromdir"

View File

@@ -5,7 +5,7 @@
# Test three bugs fixed by my redoing of the missing_below logic.
. $srcdir/testsuite/rsync.fns
. $suitedir/rsync.fns
makepath "$fromdir/subdir" "$todir"
echo data >"$fromdir/subdir/file"

View File

@@ -17,7 +17,6 @@
# License along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
tmpdir="$scratchdir"
fromdir="$tmpdir/from"
todir="$tmpdir/to"
@@ -31,7 +30,7 @@ dots='.....' # trailing dots after changes
# Berkley's nice.
PATH="$PATH:/usr/ucb"
if diff -u "$srcdir/testsuite/rsync.fns" "$srcdir/testsuite/rsync.fns" >/dev/null 2>&1; then
if diff -u "$suitedir/rsync.fns" "$suitedir/rsync.fns" >/dev/null 2>&1; then
diffopt="-u"
else
diffopt="-c"

View File

@@ -5,7 +5,7 @@
# Test that rsync handles basic xattr preservation.
. $srcdir/testsuite/rsync.fns
. $suitedir/rsync.fns
$RSYNC --version | grep ", xattrs" >/dev/null || test_skipped "Rsync is configured without xattr support"