Re: [PATCH v2] wildmatch test: cover a blind spot in "/" matching

2017-06-15 Thread Junio C Hamano
Ævar Arnfjörð Bjarmason writes: > A negated character class that does not include '/', e.g. [^a-z]: > > - Should match '/' when doing "wildmatch" > - Should not match '/' when doing "pathmatch" > > Add two tests to cover these cases. > > Helped-by: Junio C Hamano > Signed-off-by: Ævar Arnfjör

[PATCH v2] wildmatch test: cover a blind spot in "/" matching

2017-06-15 Thread Ævar Arnfjörð Bjarmason
A negated character class that does not include '/', e.g. [^a-z]: - Should match '/' when doing "wildmatch" - Should not match '/' when doing "pathmatch" Add two tests to cover these cases. Helped-by: Junio C Hamano Signed-off-by: Ævar Arnfjörð Bjarmason --- Now with updated commit message,