Title: [213749] trunk/Tools
Revision
213749
Author
commit-qu...@webkit.org
Date
2017-03-10 20:30:46 -0800 (Fri, 10 Mar 2017)

Log Message

checkpatchrelevance: Exception message is printed twice due to ScriptError handler
https://bugs.webkit.org/show_bug.cgi?id=169496

Patch by Srinivasan Vijayaraghavan <svijayaragha...@apple.com> on 2017-03-10
Reviewed by Alexey Proskuryakov.

* Scripts/webkitpy/tool/bot/patchanalysistask.py:
(PatchAnalysisTask._check_patch_relevance): Pass --quiet flag.
* Scripts/webkitpy/tool/steps/checkpatchrelevance.py:
(CheckPatchRelevance.options): Accept options.quiet to prevent duplicate output to stdout.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (213748 => 213749)


--- trunk/Tools/ChangeLog	2017-03-11 03:30:05 UTC (rev 213748)
+++ trunk/Tools/ChangeLog	2017-03-11 04:30:46 UTC (rev 213749)
@@ -1,3 +1,15 @@
+2017-03-10  Srinivasan Vijayaraghavan  <svijayaragha...@apple.com>
+
+        checkpatchrelevance: Exception message is printed twice due to ScriptError handler
+        https://bugs.webkit.org/show_bug.cgi?id=169496
+
+        Reviewed by Alexey Proskuryakov.
+
+        * Scripts/webkitpy/tool/bot/patchanalysistask.py:
+        (PatchAnalysisTask._check_patch_relevance): Pass --quiet flag.
+        * Scripts/webkitpy/tool/steps/checkpatchrelevance.py:
+        (CheckPatchRelevance.options): Accept options.quiet to prevent duplicate output to stdout.
+
 2017-03-10  Ryan Haddad  <ryanhad...@apple.com>
 
         Add new EWS queues to bot watcher's dashboard.

Modified: trunk/Tools/Scripts/webkitpy/tool/bot/patchanalysistask.py (213748 => 213749)


--- trunk/Tools/Scripts/webkitpy/tool/bot/patchanalysistask.py	2017-03-11 03:30:05 UTC (rev 213748)
+++ trunk/Tools/Scripts/webkitpy/tool/bot/patchanalysistask.py	2017-03-11 04:30:46 UTC (rev 213749)
@@ -132,6 +132,7 @@
     def _check_patch_relevance(self):
         args = [
             "check-patch-relevance",
+            "--quiet",
         ]
 
         if hasattr(self._delegate, 'group'):

Modified: trunk/Tools/Scripts/webkitpy/tool/steps/checkpatchrelevance.py (213748 => 213749)


--- trunk/Tools/Scripts/webkitpy/tool/steps/checkpatchrelevance.py	2017-03-11 03:30:05 UTC (rev 213748)
+++ trunk/Tools/Scripts/webkitpy/tool/steps/checkpatchrelevance.py	2017-03-11 04:30:46 UTC (rev 213749)
@@ -35,6 +35,7 @@
     def options(cls):
         return AbstractStep.options() + [
             Options.group,
+            Options.quiet,
         ]
 
     bindings_paths = [
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to