Fixed the use of --xattrs with --only-write-batch.
[rsync/rsync.git] / wildtest.txt
CommitLineData
97d53f8c
WD
1# Input is in the following format (all items white-space separated):
2#
85b80fbc
WD
3# The first two items are 1 or 0 indicating if the wildmat call is expected to
4# succeed and if fnmatch works the same way as wildmat, respectively. After
5# that is a text string for the match, and a pattern string. Strings can be
6# quoted (if desired) in either double or single quotes, as well as backticks.
97d53f8c
WD
7#
8# MATCH FNMATCH_SAME "text to match" 'pattern to use'
9
10# Basic wildmat features
111 1 foo foo
120 1 foo bar
131 1 '' ""
141 1 foo ???
150 1 foo ??
161 1 foo *
171 1 foo f*
180 1 foo *f
191 1 foo *foo*
201 1 foobar *ob*a*r*
211 1 aaaaaaabababab *ab
221 1 foo* foo\*
230 1 foobar foo\*bar
241 1 f\oo f\\oo
251 1 ball *[al]?
260 1 ten [ten]
271 1 ten **[!te]
280 1 ten **[!ten]
291 1 ten t[a-g]n
300 1 ten t[!a-g]n
311 1 ton t[!a-g]n
321 1 ton t[^a-g]n
331 1 a]b a[]]b
341 1 a-b a[]-]b
351 1 a]b a[]-]b
360 1 aab a[]-]b
371 1 aab a[]a-]b
381 1 ] ]
39
40# Extended slash-matching features
410 1 foo/baz/bar foo*bar
421 1 foo/baz/bar foo**bar
430 1 foo/bar foo?bar
3c30b990
WD
440 1 foo/bar foo[/]bar
450 1 foo/bar f[^eiu][^eiu][^eiu][^eiu][^eiu]r
461 1 foo-bar f[^eiu][^eiu][^eiu][^eiu][^eiu]r
97d53f8c
WD
470 1 foo **/foo
481 1 /foo **/foo
491 1 bar/baz/foo **/foo
500 1 bar/baz/foo */foo
510 0 foo/bar/baz **/bar*
85b80fbc 521 1 deep/foo/bar/baz **/bar/*
1a3ef40d
WD
530 1 deep/foo/bar/baz/ **/bar/*
541 1 deep/foo/bar/baz/ **/bar/**
550 1 deep/foo/bar **/bar/*
561 1 deep/foo/bar/ **/bar/**
97d53f8c 571 1 foo/bar/baz **/bar**
85b80fbc
WD
581 1 foo/bar/baz/x */bar/**
590 0 deep/foo/bar/baz/x */bar/**
601 1 deep/foo/bar/baz/x **/bar/*/*
97d53f8c
WD
61
62# Various additional tests
630 1 acrt a[c-c]st
85b80fbc 641 1 acrt a[c-c]rt
97d53f8c
WD
650 1 ] [!]-]
661 1 a [!]-]
670 1 '' \
680 1 \ \
85b80fbc
WD
690 1 /\ */\
701 1 /\ */\\
97d53f8c
WD
711 1 foo foo
721 1 @foo @foo
730 1 foo @foo
741 1 [ab] \[ab]
85b80fbc
WD
751 1 [ab] [[]ab]
761 1 [ab] [[:]ab]
770 1 [ab] [[::]ab]
781 1 [ab] [[:digit]ab]
791 1 [ab] [\[:]ab]
97d53f8c
WD
801 1 ?a?b \??\?b
811 1 abc \a\b\c
820 1 foo ''
831 1 foo/bar/baz/to **/t[o]
84
85# Character class tests
861 1 a1B [[:alpha:]][[:digit:]][[:upper:]]
870 1 a [[:digit:][:upper:][:space:]]
881 1 A [[:digit:][:upper:][:space:]]
891 1 1 [[:digit:][:upper:][:space:]]
85b80fbc 900 1 1 [[:digit:][:upper:][:spaci:]]
97d53f8c
WD
911 1 ' ' [[:digit:][:upper:][:space:]]
920 1 . [[:digit:][:upper:][:space:]]
15bb997d 931 1 . [[:digit:][:punct:][:space:]]
97d53f8c
WD
941 1 5 [[:xdigit:]]
951 1 f [[:xdigit:]]
961 1 D [[:xdigit:]]
15bb997d 971 1 _ [[:alnum:][:alpha:][:blank:][:cntrl:][:digit:][:graph:][:lower:][:print:][:punct:][:space:][:upper:][:xdigit:]]
b7db0906 98