wildmatch.test 722 B

123456789101112131415161718192021222324
  1. #! /bin/sh
  2. # Copyright (C) 2003 by Wayne Davison <wayned@samba.org>
  3. # This program is distributable under the terms of the GNU GPL (see
  4. # COPYING).
  5. # Test the wildmatch functionality
  6. . "$suitedir/rsync.fns"
  7. # This test exercises the wildmatch() function (with no options) and the
  8. # wildmatch_join() function (using -x and/or -e).
  9. for opts in "" -x1 "-x1 -e1" "-x1 -e1se" -x2 "-x2 -ese" -x3 "-x3 -e1" -x4 "-x4 -e2e" -x5 "-x5 -es"; do
  10. echo Running wildtest with "$opts"
  11. "$TOOLDIR/wildtest" $opts "$srcdir/wildtest.txt" >"$scratchdir/wild.out"
  12. diff $diffopt "$scratchdir/wild.out" - <<EOF
  13. No wildmatch errors found.
  14. EOF
  15. done
  16. # The script would have aborted on error, so getting here means we've won.
  17. exit 0