X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/3fedd74ba21c4dd9d64d384881271d19fc80dc47..a055dbdd883a3c04318e13211c3ef7942314bee7:/testsuite/hands.test diff --git a/testsuite/hands.test b/testsuite/hands.test index b9c68c46..46928d4e 100644 --- a/testsuite/hands.test +++ b/testsuite/hands.test @@ -1,60 +1,38 @@ #!/bin/sh -# Copyright (C) 1998,1999 Philip Hands +# Copyright (C) 1998, 1999 by Philip Hands +# Copyright (C) 2001, 2002 by Martin Pool # # This program is distributable under the terms of the GNU GPL (see COPYING) -# -# This is a simple test script that tests a few rsync -# features to make sure I haven't broken them before a release. -# -# . "$suitedir/rsync.fns" hands_setup - -checkforlogs() { - # skip it if we're under debian-test - if test -n "${Debian}" ; then return 0 ; fi - - if [ -f $1 -a -s $1 ] ; then - echo "Failures have occurred. $1 follows:" >&2 - cat $1 >&2 - exit 1 - else - echo "" - echo "Tests Completed Successfully :-)" - fi -} +DEBUG_OPTS="--debug=all0,deltasum0" # Main script starts here -runtest "basic operation" 'checkit "$RSYNC -av ${FROM}/ ${TO}" ${FROM}/ ${TO}' +runtest "basic operation" 'checkit "$RSYNC -av \"$fromdir/\" \"$todir\"" "$fromdir/" "$todir"' -ln ${FROM}/pslist ${FROM}/dir -runtest "hard links" 'checkit "$RSYNC -avH ${FROM}/ ${TO}" ${FROM}/ ${TO}' +ln "$fromdir/filelist" "$fromdir/dir" +runtest "hard links" 'checkit "$RSYNC -avH $DEBUG_OPTS \"$fromdir/\" \"$todir\"" "$fromdir/" "$todir"' -rm ${TO}/${F1} -runtest "one file" 'checkit "$RSYNC -avH ${FROM}/ ${TO}" ${FROM}/ ${TO}' +rm "$todir/text" +runtest "one file" 'checkit "$RSYNC -avH $DEBUG_OPTS \"$fromdir/\" \"$todir\"" "$fromdir/" "$todir"' -echo "extra line" >> ${TO}/${F1} -runtest "extra data" 'checkit "$RSYNC -avH ${FROM}/ ${TO}" ${FROM}/ ${TO}' +echo "extra line" >> "$todir/text" +runtest "extra data" 'checkit "$RSYNC -avH $DEBUG_OPTS --no-whole-file \"$fromdir/\" \"$todir\"" "$fromdir/" "$todir"' -cp ${FROM}/${F1} ${TO}/ThisShouldGo -runtest " --delete" 'checkit "$RSYNC --delete -avH ${FROM}/ ${TO}" ${FROM}/ ${TO}' +cp "$fromdir/text" "$todir/ThisShouldGo" +runtest " --delete" 'checkit "$RSYNC --delete -avH $DEBUG_OPTS \"$fromdir/\" \"$todir\"" "$fromdir/" "$todir"' -LONGDIR=${FROM}/This-is-a-directory-with-a-stupidly-long-name-created-in-an-attempt-to-provoke-an-error-found-in-2.0.11-that-should-hopefully-never-appear-again-if-this-test-does-its-job/This-is-a-directory-with-a-stupidly-long-name-created-in-an-attempt-to-provoke-an-error-found-in-2.0.11-that-should-hopefully-never-appear-again-if-this-test-does-its-job/This-is-a-directory-with-a-stupidly-long-name-created-in-an-attempt-to-provoke-an-error-found-in-2.0.11-that-should-hopefully-never-appear-again-if-this-test-does-its-job -mkdir -p ${LONGDIR} -date > ${LONGDIR}/1 -ls -la / > ${LONGDIR}/2 -runtest "long paths" 'checkit "$RSYNC --delete -avH ${FROM}/ ${TO}" ${FROM}/ ${TO}' +cd "$tmpdir" +rm -rf to from/*dir -rm -rf ${TO} -mkdir -p ${FROM}2/dir/subdir -cp -a ${FROM}/dir/subdir/subsubdir ${FROM}2/dir/subdir -cp ${FROM}/dir/* ${FROM}2/dir || : -runtest "excludes" 'checkit "$RSYNC -vv -Hlrt --delete --include /dir/ --include /dir/\* --include /dir/\*/subsubdir --include /dir/\*/subsubdir/\*\* --exclude \*\* ${FROM}/dir ${TO}" ${FROM}2/ ${TO}' -rm -r ${FROM}2 +# Do the real copy, touch up the parent-dir's time, and then check the copy. +$RSYNC -av from/* to/ +checkit "$RSYNC -av --exclude='*' from/ to/" "$fromdir" "$todir" -checkforlogs ${LOG}.? +# The script would have aborted on error, so getting here means we've won. +exit 0