Updates:
Status: Started
Labels: Target-2.1.1
Comment #3 on issue 347 by jprantan: Option --TagStatLink does not work as
described
http://code.google.com/p/robotframework/issues/detail?id=347
This is bug in the pattern matching. The pattern is normalized and
therefore tag
Bug_1243 does not match pattern bug_*.
I think that this can be fixed with following change:
--- src/robot/common/statistics.py (revision 2043)
+++ src/robot/common/statistics.py (working copy)
@@ -348,4 +348,4 @@
regexp.append(re.escape(token))
if open_parenthesis:
regexp.append(')')
- return re.compile('^%s$' % ''.join(regexp))
+ return re.compile('^%s$' % ''.join(regexp), re.I)
I want to still add some tests to here before committing this change.
--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings