[Libreoffice-commits] dev-tools.git: esc-reporting/qa-tools.py
Xisco Fauli
anistenis at gmail.com
Mon Jul 10 16:28:56 UTC 2017
esc-reporting/qa-tools.py | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
New commits:
commit c429529f9e46ac13599f7adf7f8ac43874bb5949
Author: Xisco Fauli <anistenis at gmail.com>
Date: Mon Jul 10 18:26:49 2017 +0200
QA Tools: warm about incorrect crashreport syntax
diff --git a/esc-reporting/qa-tools.py b/esc-reporting/qa-tools.py
index a37cbb5..698070a 100755
--- a/esc-reporting/qa-tools.py
+++ b/esc-reporting/qa-tools.py
@@ -16,9 +16,9 @@ import re
homeDir = '/home/xisco/dev-tools/esc-reporting/'
-reportPeriod = '8d'
+reportPeriod = '7d'
-newUsersPeriod = '8d'
+newUsersPeriod = '7d'
targets_list = ['5.4.0']
@@ -527,6 +527,11 @@ def analyze_bugzilla(statList, bugzillaData, cfg):
total += 1
print(str(total) + " - VERSION CHANGED TO A NEWER ONE: https://bugs.documentfoundation.org/show_bug.cgi?id=" + str(row['id']))
+ if row['cf_crashreport'] and not row['cf_crashreport'].startswith('["'):
+ total += 1
+ print(str(total) + " - INCORRECT CRASHREPORT SYNTAX: https://bugs.documentfoundation.org/show_bug.cgi?id=" + str(row['id']))
+
+
for k, v in statList['people'].items():
if not statList['people'][k]['name']:
statList['people'][k]['name'] = statList['people'][k]['email'].split('@')[0]
More information about the Libreoffice-commits
mailing list