describe: fix matching to actually match all patterns

`git describe --match` with multiple patterns matches only first pattern.
If it fails, next patterns are not tried.

Fix it, add test cases and update existing test which has wrong
expectation.

Signed-off-by: Max Kirillov <max@max630.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Max Kirillov
2017-09-16 08:53:44 +03:00
committed by Junio C Hamano
parent 77d21f29ea
commit da769d2986
2 changed files with 12 additions and 5 deletions

View File

@ -151,18 +151,21 @@ static int get_name(const char *path, const struct object_id *oid, int flag, voi
* pattern.
*/
if (patterns.nr) {
int found = 0;
struct string_list_item *item;
if (!is_tag)
return 0;
for_each_string_list_item(item, &patterns) {
if (!wildmatch(item->string, path + 10, 0, NULL))
if (!wildmatch(item->string, path + 10, 0, NULL)) {
found = 1;
break;
/* If we get here, no pattern matched. */
return 0;
}
}
if (!found)
return 0;
}
/* Is it annotated? */