From 8469219e3792fd19d8f6ca5ca6f978928fcb8dc7 Mon Sep 17 00:00:00 2001 From: Sascha Cunz Date: Sat, 22 Sep 2012 23:11:26 +0200 Subject: [PATCH] Tests: Add test for git_tag_list to check for 'git tag -l "*bar"' --- tests-clar/object/tag/list.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests-clar/object/tag/list.c b/tests-clar/object/tag/list.c index a3e0b8803..6d5a24347 100644 --- a/tests-clar/object/tag/list.c +++ b/tests-clar/object/tag/list.c @@ -97,6 +97,11 @@ static const struct pattern_match_t matches[] = { // glob in the middle { "foo/*/bar", 1, { "foo/foo/bar" } }, + // The matching of '*' is based on plain string matching analog to the regular expression ".*" + // => a '/' in the tag name has no special meaning. + // Compare to `git tag -l "*bar"` + { "*bar", 2, { "foo/bar", "foo/foo/bar" } }, + // End of list { NULL } };