Changeset 213749 in webkit


Ignore:
Timestamp:
Mar 10, 2017 8:30:46 PM (7 years ago)
Author:
commit-queue@webkit.org
Message:

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

Patch by Srinivasan Vijayaraghavan <svijayaraghavan@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.

Location:
trunk/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r213741 r213749  
     12017-03-10  Srinivasan Vijayaraghavan  <svijayaraghavan@apple.com>
     2
     3        checkpatchrelevance: Exception message is printed twice due to ScriptError handler
     4        https://bugs.webkit.org/show_bug.cgi?id=169496
     5
     6        Reviewed by Alexey Proskuryakov.
     7
     8        * Scripts/webkitpy/tool/bot/patchanalysistask.py:
     9        (PatchAnalysisTask._check_patch_relevance): Pass --quiet flag.
     10        * Scripts/webkitpy/tool/steps/checkpatchrelevance.py:
     11        (CheckPatchRelevance.options): Accept options.quiet to prevent duplicate output to stdout.
     12
    1132017-03-10  Ryan Haddad  <ryanhaddad@apple.com>
    214
  • trunk/Tools/Scripts/webkitpy/tool/bot/patchanalysistask.py

    r213722 r213749  
    133133        args = [
    134134            "check-patch-relevance",
     135            "--quiet",
    135136        ]
    136137
  • trunk/Tools/Scripts/webkitpy/tool/steps/checkpatchrelevance.py

    r213722 r213749  
    3636        return AbstractStep.options() + [
    3737            Options.group,
     38            Options.quiet,
    3839        ]
    3940
Note: See TracChangeset for help on using the changeset viewer.