Added a missing '(' in the opening comments.
[rsync/rsync.git] / testsuite / fuzzy.test
CommitLineData
f3ebe1a7
WD
1#! /bin/sh
2
3# Copyright (C) 2005 by Wayne Davison <wayned@samba.org>
4
c8d19f90 5# This program is distributable under the terms of the GNU GPL (see
f3ebe1a7
WD
6# COPYING).
7
8# Test rsync handling of the --fuzzy option.
9
10. "$suitedir/rsync.fns"
11
f3ebe1a7
WD
12mkdir "$fromdir"
13mkdir "$todir"
14
15cp -p "$srcdir"/rsync.c "$fromdir"/rsync.c
16cp -p "$fromdir"/rsync.c "$todir"/rsync2.c
17
18# Let's do it!
19checkit "$RSYNC -avvi --no-whole-file --fuzzy --delete-after \
20 \"$fromdir/\" \"$todir/\"" "$fromdir" "$todir"
21
22# The script would have aborted on error, so getting here means we've won.
23exit 0