From 2d5707c7479eacb3b1ad98e01b53f56a88f8fb78 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 18:14:31 +0200 Subject: Adding upstream version 3.2.7. Signed-off-by: Daniel Baumann --- testsuite/wildmatch.test | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 testsuite/wildmatch.test (limited to 'testsuite/wildmatch.test') diff --git a/testsuite/wildmatch.test b/testsuite/wildmatch.test new file mode 100644 index 0000000..cfe7584 --- /dev/null +++ b/testsuite/wildmatch.test @@ -0,0 +1,23 @@ +#!/bin/sh + +# Copyright (C) 2003-2022 Wayne Davison + +# This program is distributable under the terms of the GNU GPL (see +# COPYING). + +# Test the wildmatch functionality + +. "$suitedir/rsync.fns" + +# This test exercises the wildmatch() function (with no options) and the +# wildmatch_join() function (using -x and/or -e). +for opts in "" -x1 "-x1 -e1" "-x1 -e1se" -x2 "-x2 -ese" -x3 "-x3 -e1" -x4 "-x4 -e2e" -x5 "-x5 -es"; do + echo Running wildtest with "$opts" + "$TOOLDIR/wildtest" $opts "$srcdir/wildtest.txt" >"$scratchdir/wild.out" + diff $diffopt "$scratchdir/wild.out" - <