Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorSimon Schampijer <simon@schampijer.de>2008-07-14 16:44:02 (GMT)
committer Simon Schampijer <simon@schampijer.de>2008-07-14 16:44:02 (GMT)
commit7b9d908bb2ec10687904f94c8b2164976a4d5feb (patch)
tree0e2cda8d3d03fd2a9aa71bfac59d5a4038769e46 /scripts
parentff4bd56b04a7811d70726d7c15cbb1b493eaf6a1 (diff)
make testcase matching case insensitive
Diffstat (limited to 'scripts')
-rw-r--r--scripts/report.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/report.py b/scripts/report.py
index 566c768..0571b29 100644
--- a/scripts/report.py
+++ b/scripts/report.py
@@ -124,8 +124,8 @@ class ReleaseReport(object):
out.close()
- marker = '|TestCase|'
- i = comment.find(marker)
+ marker = '|testcase|'
+ i = comment.lower().find(marker)
if i >= 0:
i += len(marker)
self._testcases.append([n, comment[i:].strip()])