Allow $RSYNC_TEST_TMP to indicate a good tmp dir for our tests.
[rsync/rsync.git] / testsuite / hands.test
... / ...
CommitLineData
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
10hands_setup
11
12DEBUG_OPTS="--debug=all0,deltasum0"
13
14# Main script starts here
15
16runtest "basic operation" 'checkit "$RSYNC -av \"$fromdir/\" \"$todir\"" "$fromdir/" "$todir"'
17
18ln "$fromdir/filelist" "$fromdir/dir"
19runtest "hard links" 'checkit "$RSYNC -avH $DEBUG_OPTS \"$fromdir/\" \"$todir\"" "$fromdir/" "$todir"'
20
21rm "$todir/text"
22runtest "one file" 'checkit "$RSYNC -avH $DEBUG_OPTS \"$fromdir/\" \"$todir\"" "$fromdir/" "$todir"'
23
24echo "extra line" >> "$todir/text"
25runtest "extra data" 'checkit "$RSYNC -avH $DEBUG_OPTS --no-whole-file \"$fromdir/\" \"$todir\"" "$fromdir/" "$todir"'
26
27cp "$fromdir/text" "$todir/ThisShouldGo"
28runtest " --delete" 'checkit "$RSYNC --delete -avH $DEBUG_OPTS \"$fromdir/\" \"$todir\"" "$fromdir/" "$todir"'
29
30cd "$tmpdir"
31rm -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/
35checkit "$RSYNC -av --exclude='*' from/ to/" "$fromdir" "$todir"
36
37# The script would have aborted on error, so getting here means we've won.
38exit 0