mirror of
https://github.com/RsyncProject/rsync.git
synced 2026-02-07 21:51:09 -05:00
20 lines
377 B
Bash
20 lines
377 B
Bash
#! /bin/sh
|
|
|
|
# Copyright (C) 2003 by Wayne Davison <wayned@samba.org>
|
|
|
|
# This program is distributable under the terms of the GNU GPL (see
|
|
# COPYING).
|
|
|
|
# Test the wildmatch functionality
|
|
|
|
. $srcdir/testsuite/rsync.fns
|
|
|
|
set -x
|
|
|
|
"$TOOLDIR/wildtest" "$srcdir/wildtest.txt" >"$scratchdir/wild.out"
|
|
diff $diffopt "$scratchdir/wild.out" - <<EOF
|
|
No wildmatch errors found.
|
|
EOF
|
|
|
|
exit 0
|