We now test all the patterns using both a normal wildtest run and
authorWayne Davison <wayned@samba.org>
Mon, 2 Jan 2006 17:46:24 +0000 (17:46 +0000)
committerWayne Davison <wayned@samba.org>
Mon, 2 Jan 2006 17:46:24 +0000 (17:46 +0000)
a wildtest run with various -x and -e options.

testsuite/wildmatch.test

index 71e0ff0..2e95b86 100644 (file)
 
 set -x
 
-"$TOOLDIR/wildtest" "$srcdir/wildtest.txt" >"$scratchdir/wild.out"
-diff $diffopt "$scratchdir/wild.out" - <<EOF
+# 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
+    "$TOOLDIR/wildtest" $opts "$srcdir/wildtest.txt" >"$scratchdir/wild.out"
+    diff $diffopt "$scratchdir/wild.out" - <<EOF
 No wildmatch errors found.
 EOF
+done
 
 # The script would have aborted on error, so getting here means we've won.
 exit 0