summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests-clar/object/tag/list.c5
1 files changed, 5 insertions, 0 deletions
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 }
};