[Libreoffice-commits] dev-tools.git: 2 commits - qa/bugzillaChecker.py

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Thu Dec 13 12:39:31 UTC 2018


 qa/bugzillaChecker.py |    9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

New commits:
commit f51b006bf3cf76a15a275aa6833af3ef7d7a405f
Author:     Xisco Fauli <xiscofauli at libreoffice.org>
AuthorDate: Thu Dec 13 13:35:31 2018 +0100
Commit:     Xisco Fauli <xiscofauli at libreoffice.org>
CommitDate: Thu Dec 13 13:39:04 2018 +0100

    QA: verify crashes and regressions

diff --git a/qa/bugzillaChecker.py b/qa/bugzillaChecker.py
index 5409a5d..1b459a5 100755
--- a/qa/bugzillaChecker.py
+++ b/qa/bugzillaChecker.py
@@ -226,8 +226,8 @@ def analyze_bugzilla_checkers(statList, bugzillaData, cfg):
                                 movedToNew = True
                                 movedToNewValue = resultValue
 
-                            if addedStatus == 'RESOLVED_FIXED' and rowStatus == 'RESOLVED_FIXED' and 'regression' in rowKeywords \
-                                    and 'bisected' in rowKeywords:
+                            if addedStatus == 'RESOLVED_FIXED' and rowStatus == 'RESOLVED_FIXED' and ('regression' in rowKeywords \
+                                    or 'crash' in row['summary'].lower()):
                                 util_add_to_result(lResults, 'verify_fix', resultValue)
 
                     elif change['field_name'] == 'resolution':
commit d5b01ed304589ab7d3e8a72d3bcd1d4e14c5d597
Author:     Xisco Fauli <xiscofauli at libreoffice.org>
AuthorDate: Wed Dec 12 20:02:37 2018 +0100
Commit:     Xisco Fauli <xiscofauli at libreoffice.org>
CommitDate: Thu Dec 13 13:39:04 2018 +0100

    QA: ignore needsUXEval bugs here

diff --git a/qa/bugzillaChecker.py b/qa/bugzillaChecker.py
index 55e8d49..5409a5d 100755
--- a/qa/bugzillaChecker.py
+++ b/qa/bugzillaChecker.py
@@ -347,8 +347,9 @@ def analyze_bugzilla_checkers(statList, bugzillaData, cfg):
                 util_add_to_result(lResults, 'metabug_not_added', movedToNewValue)
 
             if not versionChanged and movedToNew and not autoConfirmed and row['severity'] != 'enhancement' and \
-                    ('regression' not in rowKeywords and 'bisected' not in rowKeywords and \
-                    'easyHack' not in rowKeywords) and row['component'] != 'Documentation' and \
+                    'regression' not in rowKeywords and 'bisected' not in rowKeywords and \
+                    'easyHack' not in rowKeywords and 'needsUXEval' not in rowKeywords and \
+                    row['component'] != 'Documentation' and \
                     movedToNewValue[2] not in cfg['configQA']['ignore']['confirmer'] and \
                     (rowVersion.startswith(versionsToCheck) or rowVersion == 'unspecified'):
                 util_add_to_result(lResults, 'version_not_changed', movedToNewValue)


More information about the Libreoffice-commits mailing list