X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/501972bf72bea1b291afd50e1752cbb007fcd0b6..05118158f4f59a5f512e5bab640f253332a6e181:/testsuite/hands.test diff --git a/testsuite/hands.test b/testsuite/hands.test index 1c321d40..4430c2a1 100644 --- a/testsuite/hands.test +++ b/testsuite/hands.test @@ -1,7 +1,7 @@ #!/bin/sh -# Copyright (C) 1998,1999 Philip Hands -# Copyright (C) 2001 by Martin Pool +# 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) @@ -16,20 +16,14 @@ runtest "basic operation" 'checkit "$RSYNC -av ${FROM}/ ${TO}" ${FROM}/ ${TO}' ln ${FROM}/filelist ${FROM}/dir runtest "hard links" 'checkit "$RSYNC -avH ${FROM}/ ${TO}" ${FROM}/ ${TO}' -rm ${TO}/${F1} +rm ${TO}/text runtest "one file" 'checkit "$RSYNC -avH ${FROM}/ ${TO}" ${FROM}/ ${TO}' -echo "extra line" >> ${TO}/${F1} +echo "extra line" >> ${TO}/text runtest "extra data" 'checkit "$RSYNC -avH ${FROM}/ ${TO}" ${FROM}/ ${TO}' -cp ${FROM}/${F1} ${TO}/ThisShouldGo +cp ${FROM}/text ${TO}/ThisShouldGo runtest " --delete" 'checkit "$RSYNC --delete -avH ${FROM}/ ${TO}" ${FROM}/ ${TO}' -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 - -checkforlogs ${LOG}.? +# The script would have aborted on error, so getting here means we've won. +exit 0