Lines Matching full:test

7 # 'te\st' 'test'; no match if FNM_NOESCAPE
8 te\st test 0x0 0
9 te\st test 0x1 1
10 te\st test 0x1e 0
19 # 'te\*t' 'test'; no match
20 te\*t test 0x0 1
21 te\*t test 0x1f 1
26 # 'te\?t' 'test'; no match
27 te\?t test 0x0 1
28 te\?t test 0x1f 1
29 # 'tesT' 'test'; match if FNM_CASEFOLD
30 tesT test 0x0 1
31 tesT test 0xf 1
32 tesT test 0x10 0
33 # 'test' 'Test'; match if FNM_CASEFOLD
34 test Test 0x0 1
35 test Test 0xf 1
36 test Test 0x10 0
37 # 'tEst' 'teSt'; match if FNM_CASEFOLD
38 tEst teSt 0x0 1
39 tEst teSt 0xf 1
40 tEst teSt 0x10 0
41 # '?est' 'test'; match always
42 ?est test 0x0 0
43 ?est test 0x1f 0
44 # 'te?t' 'test'; match always
45 te?t test 0x0 0
46 te?t test 0x1f 0
47 # 'tes?' 'test'; match always
48 tes? test 0x0 0
49 tes? test 0x1f 0
50 # 'test?' 'test'; no match
51 test? test 0x0 1
52 test? test 0x1f 1
54 * test 0x0 0
55 * test 0x1f 0
56 # '*test' 'test'; match always
57 *test test 0x0 0
58 *test test 0x1f 0
59 # '*est' 'test'; match always
60 *est test 0x0 0
61 *est test 0x1f 0
62 # '*st' 'test'; match always
63 *st test 0x0 0
64 *st test 0x1f 0
65 # 't*t' 'test'; match always
66 t*t test 0x0 0
67 t*t test 0x1f 0
68 # 'te*t' 'test'; match always
69 te*t test 0x0 0
70 te*t test 0x1f 0
71 # 'te*st' 'test'; match always
72 te*st test 0x0 0
73 te*st test 0x1f 0
74 # 'te*' 'test'; match always
75 te* test 0x0 0
76 te* test 0x1f 0
77 # 'tes*' 'test'; match always
78 tes* test 0x0 0
79 tes* test 0x1f 0
80 # 'test*' 'test'; match always
81 test* test 0x0 0
82 test* test 0x1f 0
86 # 'test*?*[a-z]*' 'testgoop'; match always
87 test*?*[a-z]* testgoop 0x0 0
88 test*?*[a-z]* testgoop 0x1f 0
89 # 'te[^abc]t' 'test'; match always
90 te[^abc]t test 0x0 0
91 te[^abc]t test 0x1f 0
92 # 'te[^x]t' 'test'; match always
93 te[^x]t test 0x0 0
94 te[^x]t test 0x1f 0
95 # 'te[!x]t' 'test'; match always
96 te[!x]t test 0x0 0
97 te[^x]t test 0x1f 0
110 # 'te[S]t' 'test'; match if FNM_CASEFOLD
111 te[S]t test 0x0 1
112 te[S]t test 0xf 1
113 te[S]t test 0x10 0
114 # 'te[r-t]t' 'test'; match always
115 te[r-t]t test 0x0 0
116 te[r-t]t test 0x1f 0
117 # 'te[r-t]t' 'teSt'; match if FNM_CASEFOLD
118 te[r-t]t teSt 0x0 1
119 te[r-t]t teSt 0xf 1
120 te[r-t]t teSt 0x10 0
121 # 'te[r-T]t' 'test'; match if FNM_CASEFOLD
122 te[r-T]t test 0x0 1
123 te[r-T]t test 0xf 1
124 te[r-T]t test 0x10 0
125 # 'te[R-T]t' 'test'; match if FNM_CASEFOLD
126 te[R-T]t test 0x0 1
127 te[R-T]t test 0xf 1
128 te[R-T]t test 0x10 0
135 # 'tes[]t]' 'test'; match always
136 tes[]t] test 0x0 0
137 tes[]t] test 0x1f 0
138 # 'tes[t-]' 'test'; match always
139 tes[t-] test 0x0 0
140 tes[t-] test 0x1f 0
141 # 'tes[t-]]' 'test]'; match always
142 tes[t-]] test] 0x0 0
143 tes[t-]] test] 0x1f 0
144 # 'tes[t-]]' 'test'; no match
145 tes[t-]] test 0x0 1
146 tes[t-]] test 0x1f 1
147 # 'tes[u-]' 'test'; no match
148 tes[u-] test 0x0 1
149 tes[u-] test 0x1f 1
151 tes[t-] test[t-] 0x0 1
152 tes[t-] test[t-] 0x1f 1
153 # 'test[/-/]' 'test[/-/]'; no match
154 test[/-/] test/-/ 0x0 1
155 test[/-/] test/-/ 0x1f 1
156 # 'test[\/-/]' 'test[/-/]'; no match
157 test[\/-/] test/-/ 0x0 1
158 test[\/-/] test/-/ 0x1f 1
159 # 'test[/-\/]' 'test[/-/]'; no match
160 test[/-\/] test/-/ 0x0 1
161 test[/-\/] test/-/ 0x1f 1
162 # 'test[/-/]' 'test/'; no match if APR_FNM_PATHNAME
163 test[/-/] test/ 0x0 0
164 test[/-/] test/ 0x2 1
165 test[/-/] test/ 0x1d 0
166 # 'test[\/-/]' 'test/'; no match if APR_FNM_PATHNAME
167 test[\/-/] test/ 0x0 0
168 test[\/-/] test/ 0x2 1
169 test[\/-/] test/ 0x1d 0
170 # 'test[/-\/]' 'test/'; no match if APR_FNM_PATHNAME
171 test[/-\/] test/ 0x0 0
172 test[/-\/] test/ 0x2 1
173 test[/-\/] test/ 0x1d 0
174 # '/test' 'test'; no match
175 /test test 0x0 1
176 /test test 0x1f 1
177 # 'test' '/test'; no match
178 test /test 0x0 1
179 test /test 0x1f 1
180 # 'test/' 'test'; no match
181 test/ test 0x0 1
182 test/ test 0x1f 1
183 # 'test' 'test/'; match if FNM_LEADING_DIR
184 test test/ 0x0 1
185 test test/ 0x17 1
186 test test/ 0x8 0
187 # '\/test' '/test'; match unless FNM_NOESCAPE
188 \/test /test 0x0 0
189 \/test /test 0x1 1
190 \/test /test 0x1e 0
191 # '*test' '/test'; match unless FNM_PATHNAME
192 *test /test 0x0 0
193 *test /test 0x2 1
194 *test /test 0x1d 0
195 # '/*/test' '/test'; no match
196 /*/test /test 0x0 1
197 /*/test /test 0x1f 1
198 # '/*/test' '/test/test'; match always
199 /*/test /test/test 0x0 0
200 /*/test /test/test 0x1f 0
201 # 'test/this' 'test/'; match never
202 test/this test/ 0x0 1
203 test/this test/ 0x1f 1
204 # 'test/' 'test/this'; match never
205 test/ test/this 0x0 1
206 test/ test/this 0x1f 1
207 # 'test*/this' 'test/this'; match always
208 test*/this test/this 0x0 0
209 test*/this test/this 0x1f 0
210 # 'test*/this' 'test/that'; match never
211 test*/this test/that 0x0 1
212 test*/this test/that 0x1f 1
213 # 'test/*this' 'test/this'; match always
214 test/*this test/this 0x0 0
215 test/*this test/this 0x1f 0
231 # 'test/this' 'test/this'; match always
232 test/this test/this 0x0 0
233 test/this test/this 0x1f 0
234 # 'test?this' 'test/this'; fails if FNM_PATHNAME
235 test?this test/this 0x0 0
236 test?this test/this 0x2 1
237 test?this test/this 0x1d 0
238 # 'test*this' 'test/this'; fails if FNM_PATHNAME
239 test*this test/this 0x0 0
240 test*this test/this 0x2 1
241 test*this test/this 0x1d 0
242 # 'test[/]this' 'test/this'; fails if FNM_PATHNAME
243 test[/]this test/this 0x0 0
244 test[/]this test/this 0x2 1
245 test[/]this test/this 0x1d 0
246 # 'test/.*' 'test/.this'; match always
247 test/.* test/.this 0x0 0
248 test/.* test/.this 0x1f 0
249 # 'test/*' 'test/.this'; fails if FNM_PERIOD and FNM_PATHNAME
250 test/* test/.this 0x0 0
251 test/* test/.this 0x6 1
252 test/* test/.this 0x19 0
253 # 'test/?' 'test/.this'; fails if FNM_PERIOD and FNM_PATHNAME
254 test/?this test/.this 0x0 0
255 test/?this test/.this 0x6 1
256 test/?this test/.this 0x19 0
257 # 'test/[.]this' 'test/.this'; fails if FNM_PERIOD and FNM_PATHNAME
258 test/[.]this test/.this 0x0 0
259 test/[.]this test/.this 0x6 1
260 test/[.]this test/.this 0x19 0