Another xattr "internal abbrev" fix for an xattr object that is
[rsync/rsync.git] / testsuite / wildmatch.test
... / ...
CommitLineData
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
10. "$suitedir/rsync.fns"
11
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
15 echo Running wildtest with "$opts"
16 "$TOOLDIR/wildtest" $opts "$srcdir/wildtest.txt" >"$scratchdir/wild.out"
17 diff $diffopt "$scratchdir/wild.out" - <<EOF
18No wildmatch errors found.
19EOF
20done
21
22# The script would have aborted on error, so getting here means we've won.
23exit 0