Improved the trailing comment.
[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
12# Main script starts here
13
14runtest "basic operation" 'checkit "$RSYNC -av ${FROM}/ ${TO}" ${FROM}/ ${TO}'
15
16ln ${FROM}/filelist ${FROM}/dir
17runtest "hard links" 'checkit "$RSYNC -avH ${FROM}/ ${TO}" ${FROM}/ ${TO}'
18
19rm ${TO}/text
20runtest "one file" 'checkit "$RSYNC -avH ${FROM}/ ${TO}" ${FROM}/ ${TO}'
21
22echo "extra line" >> ${TO}/text
23runtest "extra data" 'checkit "$RSYNC -avH ${FROM}/ ${TO}" ${FROM}/ ${TO}'
24
25cp ${FROM}/text ${TO}/ThisShouldGo
26runtest " --delete" 'checkit "$RSYNC --delete -avH ${FROM}/ ${TO}" ${FROM}/ ${TO}'
27
28# The script would have aborted on error, so getting here means we've won.
29exit 0