File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / rsync / testsuite / hands.test
Revision 1.1.1.2 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Mon Oct 14 07:51:15 2013 UTC (10 years, 8 months ago) by misho
Branches: rsync, MAIN
CVS tags: v3_1_2p5, RSYNC3_1_0, HEAD
v 3.1.0

    1: #!/bin/sh
    2: 
    3: # Copyright (C) 1998, 1999 by Philip Hands <phil@hands.com>
    4: # Copyright (C) 2001, 2002 by Martin Pool <mbp@samba.org>
    5: #
    6: # This program is distributable under the terms of the GNU GPL (see COPYING)
    7: 
    8: . "$suitedir/rsync.fns"
    9: 
   10: hands_setup
   11: 
   12: DEBUG_OPTS="--debug=all0,deltasum0"
   13: 
   14: # Main script starts here
   15: 
   16: runtest "basic operation" 'checkit "$RSYNC -av \"$fromdir/\" \"$todir\"" "$fromdir/" "$todir"'
   17: 
   18: ln "$fromdir/filelist" "$fromdir/dir"
   19: runtest "hard links" 'checkit "$RSYNC -avH $DEBUG_OPTS \"$fromdir/\" \"$todir\"" "$fromdir/" "$todir"'
   20: 
   21: rm "$todir/text"
   22: runtest "one file" 'checkit "$RSYNC -avH $DEBUG_OPTS \"$fromdir/\" \"$todir\"" "$fromdir/" "$todir"'
   23: 
   24: echo "extra line" >> "$todir/text"
   25: runtest "extra data" 'checkit "$RSYNC -avH $DEBUG_OPTS --no-whole-file \"$fromdir/\" \"$todir\"" "$fromdir/" "$todir"'
   26: 
   27: cp "$fromdir/text" "$todir/ThisShouldGo"
   28: runtest " --delete" 'checkit "$RSYNC --delete -avH $DEBUG_OPTS \"$fromdir/\" \"$todir\"" "$fromdir/" "$todir"'
   29: 
   30: cd "$tmpdir"
   31: rm -rf to from/*dir
   32: 
   33: # Do the real copy, touch up the parent-dir's time, and then check the copy.
   34: $RSYNC -av from/* to/
   35: checkit "$RSYNC -av --exclude='*' from/ to/" "$fromdir" "$todir"
   36: 
   37: # The script would have aborted on error, so getting here means we've won.
   38: exit 0

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>