3 # Copyright (C) 2003 by Wayne Davison <wayned@samba.org>
5 # This program is distributable under the terms of the GNU GPL (see
8 # Test the wildmatch functionality
10 .
"$suitedir/rsync.fns"
12 # This test exercises the wildmatch() function (with no options) and the
13 # wildmatch_join() function (using -x and/or -e).
14 for opts
in "" -x1 "-x1 -e1" "-x1 -e1se" -x2 "-x2 -ese" -x3 "-x3 -e1" -x4 "-x4 -e2e" -x5 "-x5 -es"; do
15 echo Running wildtest with
"$opts"
16 "$TOOLDIR/wildtest" $opts "$srcdir/wildtest.txt" >"$scratchdir/wild.out"
17 diff $diffopt "$scratchdir/wild.out" - <<EOF
18 No wildmatch errors found.
22 # The script would have aborted on error, so getting here means we've won.