Added a test of a multi-file copy from a nested directory using a
authorWayne Davison <wayned@samba.org>
Sun, 18 Mar 2007 20:40:01 +0000 (20:40 +0000)
committerWayne Davison <wayned@samba.org>
Sun, 18 Mar 2007 20:40:01 +0000 (20:40 +0000)
relative source path.

testsuite/hands.test

index 711ea71..6ed46f2 100644 (file)
@@ -25,5 +25,12 @@ runtest "extra data" 'checkit "$RSYNC -avH --no-whole-file \"$fromdir/\" \"$todi
 cp "$fromdir/text" "$todir/ThisShouldGo"
 runtest " --delete" 'checkit "$RSYNC --delete -avH \"$fromdir/\" \"$todir\"" "$fromdir/" "$todir"'
 
+cd "$tmpdir"
+rm -rf to from/*dir
+
+# 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"
+
 # The script would have aborted on error, so getting here means we've won.
 exit 0