From 408aa7b24c7ee02d530e05852fd8eb0f5abfc3fd Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Mon, 31 Jan 2005 18:09:23 +0000 Subject: [PATCH] Improved the exclude tests to make sure that the filter files are interacting with --delete-during correctly. --- testsuite/exclude.test | 53 +++++++++++++++++++++++++++++++----------- 1 file changed, 39 insertions(+), 14 deletions(-) diff --git a/testsuite/exclude.test b/testsuite/exclude.test index 18afcdea..d314941d 100644 --- a/testsuite/exclude.test +++ b/testsuite/exclude.test @@ -22,6 +22,7 @@ export HOME CVSIGNORE makepath "$fromdir/foo/down/to/you" makepath "$fromdir/bar/down/to/foo/too" +makepath "$fromdir/bar/down/to/bar/baz" makepath "$fromdir/mid/for/foo/and/that/is/who" cat >"$fromdir/.excl" <"$fromdir/.excl" <"$fromdir/foo/file1" echo removed >"$fromdir/foo/file2" @@ -48,15 +48,19 @@ echo cvsout >"$fromdir/bar/down/to/home-cvs-exclude" cat >"$fromdir/bar/down/to/.excl2" <"$fromdir/bar/down/to/foo/.excl2" <"$fromdir/bar/down/to/foo/file1" echo cvsout >"$fromdir/bar/down/to/foo/file1.bak" echo gone >"$fromdir/bar/down/to/foo/file3" echo lost >"$fromdir/bar/down/to/foo/file4" -echo cvsout >"$fromdir/bar/down/to/foo/file4.junk" +echo cvsout-but-filtin >"$fromdir/bar/down/to/foo/file4.junk" echo smashed >"$fromdir/bar/down/to/foo/to" -cat >"$fromdir/bar/down/to/foo/.excl2" <"$fromdir/bar/down/to/bar/.excl2" <"$fromdir/bar/down/to/bar/baz/file5.deep" # This one should be ineffectual cat >"$fromdir/mid/.excl2" <"$todir"/bar/down/to/bar/baz/nodel.deep +cp -p "$todir"/bar/down/to/bar/baz/nodel.deep "$chkdir"/bar/down/to/bar/baz + $RSYNC -av --existing --include='*/' --exclude='*' "$fromdir/" "$chkdir/" # Now, test if rsync excludes the same files, this time with a merge-exclude # file. -checkit "sed '/!/d' \"$excl\" | $RSYNC -avv -f :_.excl -f ._- \ - --delete-excluded \"$fromdir/\" \"$todir/\"" "$chkdir" "$todir" +checkit "sed '/!/d' \"$excl\" | + $RSYNC -avv -f :_.excl -f ._- \ + --delete-during \"$fromdir/\" \"$todir/\"" "$chkdir" "$todir" + +# Remove the files that --delete-excluded will delete. + +rm "$chkdir"/.excl +rm "$chkdir"/bar/.excl +rm "$chkdir"/bar/down/to/.excl2 +rm "$chkdir"/bar/down/to/foo/.excl2 +rm "$chkdir"/bar/down/to/bar/.excl2 +rm "$chkdir"/mid/.excl +rm "$chkdir"/bar/down/to/bar/baz/nodel.deep + +$RSYNC -av --existing --include='*/' --exclude='*' "$fromdir/" "$chkdir/" + +# Finally, try the prior command with --delete-before and --delete-excluded. + +checkit "sed '/!/d' \"$excl\" | + $RSYNC -avv -f :_.excl -f ._- --delete-excluded \ + --delete-before \"$fromdir/\" \"$todir/\"" "$chkdir" "$todir" # The script would have aborted on error, so getting here means we've won. exit 0 -- 2.34.1