OLD | NEW |
(Empty) | |
| 1 Pass: fnmatch(*, anything, 0) returned 0, expected 0 |
| 2 Pass: fnmatch(*.txt, readme.txt, 0) returned 0, expected 0 |
| 3 Pass: fnmatch(*.txt, readme.info, 0) returned 1, expected 1 |
| 4 Pass: fnmatch(*.t?t, readme.txt, 0) returned 0, expected 0 |
| 5 Pass: fnmatch(*.t?t, readme.tot, 0) returned 0, expected 0 |
| 6 Pass: fnmatch(*.t?t, readme.txxt, 0) returned 1, expected 1 |
| 7 Pass: fnmatch([a-g]1, c1, 0) returned 0, expected 0 |
| 8 Pass: fnmatch([a-g]1, i1, 0) returned 1, expected 1 |
| 9 Pass: fnmatch([!a-g]1, i1, 0) returned 0, expected 0 |
| 10 Pass: fnmatch(a\*, anything, 0) returned 1, expected 1 |
| 11 Pass: fnmatch(a\*, a*, 0) returned 0, expected 0 |
| 12 Pass: fnmatch(a\*, a*, 2) returned 1, expected 1 |
| 13 Pass: fnmatch(a\*, a\*, 2) returned 0, expected 0 |
| 14 Pass: fnmatch(*readme, /etc/readme, 0) returned 0, expected 0 |
| 15 Pass: fnmatch(*readme, /etc/readme, 1) returned 1, expected 1 |
| 16 Pass: fnmatch(/*/readme, /etc/readme, 1) returned 0, expected 0 |
| 17 Pass: fnmatch(*readme, /etc/.readme, 0) returned 0, expected 0 |
| 18 Pass: fnmatch(*readme, .readme, 4) returned 1, expected 1 |
| 19 Pass: fnmatch(*.readme, /etc/.readme, 4) returned 0, expected 0 |
| 20 Pass: fnmatch(*.readme, /etc/.readme, 5) returned 1, expected 1 |
| 21 Pass: fnmatch(/*/.readme, /etc/.readme, 5) returned 0, expected 0 |
| 22 Pass: fnmatch(ReAdME, readme, 0) returned 1, expected 1 |
| 23 All tests passed. |
OLD | NEW |