File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / rsync / testsuite / daemon-gzip-upload.test
Revision 1.1.1.2 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue Nov 1 09:54:32 2016 UTC (7 years, 8 months ago) by misho
Branches: rsync, MAIN
CVS tags: v3_2_3, v3_1_2p5, HEAD
rsync 3.1.2

    1: #!/bin/sh
    2: 
    3: # Copyright (C) 2001, 2002 by Martin Pool <mbp@samba.org>
    4: 
    5: # This program is distributable under the terms of the GNU GPL (see
    6: # COPYING)
    7: 
    8: # We don't really want to start the server listening, because that
    9: # might interfere with the security or operation of the test machine.
   10: # Instead we use the fake-connect feature to dynamically assign a pair
   11: # of ports.
   12: 
   13: # This test tries to upload a file over a compressed connection to the
   14: # server.  This ought to exercise (exorcise?) a bug in 2.5.3.
   15: 
   16: . "$suitedir/rsync.fns"
   17: 
   18: build_rsyncd_conf
   19: 
   20: RSYNC_CONNECT_PROG="$RSYNC --config=$conf --daemon"
   21: export RSYNC_CONNECT_PROG
   22: 
   23: hands_setup
   24: 
   25: # Build chkdir with a normal rsync and an --exclude.
   26: $RSYNC -av --exclude=foobar.baz "$fromdir/" "$chkdir/"
   27: 
   28: checkit "'$ignore23' $RSYNC -avvvvzz '$fromdir/' localhost::test-to/" "$chkdir" "$todir"
   29: 
   30: # The script would have aborted on error, so getting here means we've won.
   31: exit 0

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