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