Title: [212591] trunk/Tools
Revision
212591
Author
aakash_j...@apple.com
Date
2017-02-17 15:49:59 -0800 (Fri, 17 Feb 2017)

Log Message

Fix failure from r212579.

Unreviewed build-fix.

* Scripts/webkitpy/tool/steps/checkpatchrelevance.py:
(CheckPatchRelevance._changes_are_relevant): Return true for all groups others than jsc for now.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (212590 => 212591)


--- trunk/Tools/ChangeLog	2017-02-17 23:41:37 UTC (rev 212590)
+++ trunk/Tools/ChangeLog	2017-02-17 23:49:59 UTC (rev 212591)
@@ -1,3 +1,12 @@
+2017-02-17  Aakash Jain  <aakash_j...@apple.com>
+
+        Fix failure from r212579.
+
+        Unreviewed build-fix.
+
+        * Scripts/webkitpy/tool/steps/checkpatchrelevance.py:
+        (CheckPatchRelevance._changes_are_relevant): Return true for all groups others than jsc for now.
+
 2017-02-17  Srinivasan Vijayaraghavan  <svijayaragha...@apple.com>
 
         EWS should run _javascript_Core tests

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


--- trunk/Tools/Scripts/webkitpy/tool/steps/checkpatchrelevance.py	2017-02-17 23:41:37 UTC (rev 212590)
+++ trunk/Tools/Scripts/webkitpy/tool/steps/checkpatchrelevance.py	2017-02-17 23:49:59 UTC (rev 212591)
@@ -50,7 +50,7 @@
 
     def _changes_are_relevant(self, changed_files):
         # In the default case, all patches are relevant
-        if self._options.group is None:
+        if self._options.group != 'jsc':
             return True
 
         patterns = self.group_to_paths_mapping[self._options.group]
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to