Fixed the interaction of --fake-super with --link-dest & --xattrs.
[rsync/rsync.git] / testsuite / wildmatch.test
CommitLineData
08c5385e
WD
1#! /bin/sh
2
3# Copyright (C) 2003 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 the wildmatch functionality
9
e920830e 10. "$suitedir/rsync.fns"
08c5385e 11
955a3a3d
WD
12# This test exercises the wildmatch() function (with no options) and the
13# wildmatch_join() function (using -x and/or -e).
14for opts in "" -x1 "-x1 -e1" "-x1 -e1se" -x2 "-x2 -ese" -x3 "-x3 -e1" -x4 "-x4 -e2e" -x5 "-x5 -es"; do
8a3d4658 15 echo Running wildtest with "$opts"
955a3a3d
WD
16 "$TOOLDIR/wildtest" $opts "$srcdir/wildtest.txt" >"$scratchdir/wild.out"
17 diff $diffopt "$scratchdir/wild.out" - <<EOF
37ff0e34 18No wildmatch errors found.
08c5385e 19EOF
955a3a3d 20done
08c5385e 21
05118158 22# The script would have aborted on error, so getting here means we've won.
08c5385e 23exit 0