Improved the build rules for rsync.1 and rsyncd.conf.5 when building
[rsync/qnx.git] / testsuite / wildmatch.test
blob9d50189788b0ba7012ed81bba0df50c4a7fb0bf8
1 #! /bin/sh
3 # Copyright (C) 2003 by Wayne Davison <wayned@samba.org>
5 # This program is distributable under the terms of the GNU GPL (see
6 # COPYING).
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.
19 EOF
20 done
22 # The script would have aborted on error, so getting here means we've won.
23 exit 0